├── .gitattributes ├── .gitignore ├── 9781788839259.png ├── Chapter06 ├── RCP01-Database-CD │ ├── ARM │ │ ├── sql.deploy.json │ │ ├── sql.deploy.param.dev.json │ │ └── sql.deploy.param.test.json │ └── azure-pipelines.yml ├── RCP03-ASPNETCore-CD │ ├── ARM │ │ ├── web.deploy.json │ │ └── web.deploy.parameters.json │ └── azure-pipelines.yml ├── RCP04-AzureFunction-CD │ ├── ARM │ │ ├── function.deploy.json │ │ └── function.deploy.parameters.json │ ├── Function │ │ ├── .funcignore │ │ ├── HelloWorld │ │ │ ├── function.json │ │ │ ├── index.ts │ │ │ └── sample.dat │ │ ├── extensions.csproj │ │ ├── host.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── proxies.json │ │ └── tsconfig.json │ └── azure-pipelines.yml └── RCP06-StaticWebsite-CD │ ├── ARM │ ├── storageaccount.deploy.json │ └── storageaccount.deploy.parameters.json │ └── jekyll-website │ ├── 404.html │ ├── about │ └── index.html │ ├── assets │ ├── main.css │ └── minima-social-icons.svg │ ├── feed.xml │ ├── index.html │ └── jekyll │ └── update │ └── 2019 │ └── 04 │ └── 21 │ └── welcome-to-jekyll.html ├── Chapter07 ├── RCP01-NuGet-Artifact │ ├── MyClassLib │ │ ├── MyClassLib.csproj │ │ └── Utilities.cs │ └── azure-pipelines.yml └── RCP04-NPM-Artifact │ ├── azure-pipelines.yml │ ├── print-azuredevops-module │ ├── .npmrc │ ├── index.js │ ├── package-lock.json │ ├── package.json │ └── readme.md │ └── use-print-azuredevops-module │ ├── .npmrc │ ├── package-lock.json │ ├── package.json │ └── print.js ├── Chapter08 ├── RCP02-CleanFolder-Extensions │ ├── azure-pipelines.yml │ └── clean-folder │ │ ├── .gitignore │ │ ├── images │ │ ├── logo128.png │ │ ├── logo512.png │ │ └── screenshot.png │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── readme.md │ │ ├── task │ │ ├── .taskkey │ │ ├── icon.png │ │ ├── index.ts │ │ ├── package-lock.json │ │ ├── package.json │ │ └── task.json │ │ ├── tsconfig.json │ │ ├── tslint.json │ │ └── vss-extension.json ├── RCP03-UIExtension-Extensions │ └── gherkin-to-testcase │ │ ├── .gitignore │ │ ├── images │ │ ├── gen-test-case.png │ │ └── logo128.png │ │ ├── lib │ │ └── VSS.SDK.min.js │ │ ├── package.json │ │ ├── readme.md │ │ ├── specs │ │ └── 1.feature │ │ ├── src │ │ ├── GherkinParser.ts │ │ ├── generateTestCase.html │ │ ├── generateTestCase.ts │ │ ├── main.html │ │ └── main.ts │ │ ├── tsconfig.json │ │ ├── tslint.json │ │ ├── vss-extension.json │ │ └── webpack.config.dev.js └── RCP04-GitLab-Extensions │ └── gitlab-integration │ ├── .gitignore │ ├── images │ ├── gitlab128.png │ ├── gitlab16.png │ ├── gitlab512.png │ └── screenshots │ │ ├── add-artifact-release.png │ │ ├── add-endpoint.png │ │ ├── add-repo-release.png │ │ ├── add-task-build.png │ │ ├── browse-artifact.png │ │ ├── configure-task-build.png │ │ ├── create-release.png │ │ └── new-gitlab-endpoint.png │ ├── package.json │ ├── readme.md │ ├── resources │ └── gitlab.ico │ ├── tasks │ ├── .taskkey │ └── DownloadRepo │ │ └── DownloadRepoV1 │ │ ├── gitapi.ts │ │ ├── gitwrapper.ts │ │ ├── icon.png │ │ ├── index.ts │ │ ├── package-lock.json │ │ ├── package.json │ │ └── task.json │ ├── tsconfig.json │ ├── tslint.json │ └── vss-extension.json └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/.gitignore -------------------------------------------------------------------------------- /9781788839259.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/9781788839259.png -------------------------------------------------------------------------------- /Chapter06/RCP01-Database-CD/ARM/sql.deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter06/RCP01-Database-CD/ARM/sql.deploy.json -------------------------------------------------------------------------------- /Chapter06/RCP01-Database-CD/ARM/sql.deploy.param.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter06/RCP01-Database-CD/ARM/sql.deploy.param.dev.json -------------------------------------------------------------------------------- /Chapter06/RCP01-Database-CD/ARM/sql.deploy.param.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter06/RCP01-Database-CD/ARM/sql.deploy.param.test.json -------------------------------------------------------------------------------- /Chapter06/RCP01-Database-CD/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter06/RCP01-Database-CD/azure-pipelines.yml -------------------------------------------------------------------------------- /Chapter06/RCP03-ASPNETCore-CD/ARM/web.deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter06/RCP03-ASPNETCore-CD/ARM/web.deploy.json -------------------------------------------------------------------------------- /Chapter06/RCP03-ASPNETCore-CD/ARM/web.deploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter06/RCP03-ASPNETCore-CD/ARM/web.deploy.parameters.json -------------------------------------------------------------------------------- /Chapter06/RCP03-ASPNETCore-CD/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter06/RCP03-ASPNETCore-CD/azure-pipelines.yml -------------------------------------------------------------------------------- /Chapter06/RCP04-AzureFunction-CD/ARM/function.deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter06/RCP04-AzureFunction-CD/ARM/function.deploy.json -------------------------------------------------------------------------------- /Chapter06/RCP04-AzureFunction-CD/ARM/function.deploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter06/RCP04-AzureFunction-CD/ARM/function.deploy.parameters.json -------------------------------------------------------------------------------- /Chapter06/RCP04-AzureFunction-CD/Function/.funcignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter06/RCP04-AzureFunction-CD/Function/.funcignore -------------------------------------------------------------------------------- /Chapter06/RCP04-AzureFunction-CD/Function/HelloWorld/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter06/RCP04-AzureFunction-CD/Function/HelloWorld/function.json -------------------------------------------------------------------------------- /Chapter06/RCP04-AzureFunction-CD/Function/HelloWorld/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter06/RCP04-AzureFunction-CD/Function/HelloWorld/index.ts -------------------------------------------------------------------------------- /Chapter06/RCP04-AzureFunction-CD/Function/HelloWorld/sample.dat: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Azure" 3 | } -------------------------------------------------------------------------------- /Chapter06/RCP04-AzureFunction-CD/Function/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter06/RCP04-AzureFunction-CD/Function/extensions.csproj -------------------------------------------------------------------------------- /Chapter06/RCP04-AzureFunction-CD/Function/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter06/RCP04-AzureFunction-CD/Function/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter06/RCP04-AzureFunction-CD/Function/package-lock.json -------------------------------------------------------------------------------- /Chapter06/RCP04-AzureFunction-CD/Function/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter06/RCP04-AzureFunction-CD/Function/package.json -------------------------------------------------------------------------------- /Chapter06/RCP04-AzureFunction-CD/Function/proxies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter06/RCP04-AzureFunction-CD/Function/proxies.json -------------------------------------------------------------------------------- /Chapter06/RCP04-AzureFunction-CD/Function/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter06/RCP04-AzureFunction-CD/Function/tsconfig.json -------------------------------------------------------------------------------- /Chapter06/RCP04-AzureFunction-CD/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter06/RCP04-AzureFunction-CD/azure-pipelines.yml -------------------------------------------------------------------------------- /Chapter06/RCP06-StaticWebsite-CD/ARM/storageaccount.deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter06/RCP06-StaticWebsite-CD/ARM/storageaccount.deploy.json -------------------------------------------------------------------------------- /Chapter06/RCP06-StaticWebsite-CD/ARM/storageaccount.deploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter06/RCP06-StaticWebsite-CD/ARM/storageaccount.deploy.parameters.json -------------------------------------------------------------------------------- /Chapter06/RCP06-StaticWebsite-CD/jekyll-website/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter06/RCP06-StaticWebsite-CD/jekyll-website/404.html -------------------------------------------------------------------------------- /Chapter06/RCP06-StaticWebsite-CD/jekyll-website/about/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter06/RCP06-StaticWebsite-CD/jekyll-website/about/index.html -------------------------------------------------------------------------------- /Chapter06/RCP06-StaticWebsite-CD/jekyll-website/assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter06/RCP06-StaticWebsite-CD/jekyll-website/assets/main.css -------------------------------------------------------------------------------- /Chapter06/RCP06-StaticWebsite-CD/jekyll-website/assets/minima-social-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter06/RCP06-StaticWebsite-CD/jekyll-website/assets/minima-social-icons.svg -------------------------------------------------------------------------------- /Chapter06/RCP06-StaticWebsite-CD/jekyll-website/feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter06/RCP06-StaticWebsite-CD/jekyll-website/feed.xml -------------------------------------------------------------------------------- /Chapter06/RCP06-StaticWebsite-CD/jekyll-website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter06/RCP06-StaticWebsite-CD/jekyll-website/index.html -------------------------------------------------------------------------------- /Chapter06/RCP06-StaticWebsite-CD/jekyll-website/jekyll/update/2019/04/21/welcome-to-jekyll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter06/RCP06-StaticWebsite-CD/jekyll-website/jekyll/update/2019/04/21/welcome-to-jekyll.html -------------------------------------------------------------------------------- /Chapter07/RCP01-NuGet-Artifact/MyClassLib/MyClassLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter07/RCP01-NuGet-Artifact/MyClassLib/MyClassLib.csproj -------------------------------------------------------------------------------- /Chapter07/RCP01-NuGet-Artifact/MyClassLib/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter07/RCP01-NuGet-Artifact/MyClassLib/Utilities.cs -------------------------------------------------------------------------------- /Chapter07/RCP01-NuGet-Artifact/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter07/RCP01-NuGet-Artifact/azure-pipelines.yml -------------------------------------------------------------------------------- /Chapter07/RCP04-NPM-Artifact/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter07/RCP04-NPM-Artifact/azure-pipelines.yml -------------------------------------------------------------------------------- /Chapter07/RCP04-NPM-Artifact/print-azuredevops-module/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter07/RCP04-NPM-Artifact/print-azuredevops-module/.npmrc -------------------------------------------------------------------------------- /Chapter07/RCP04-NPM-Artifact/print-azuredevops-module/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter07/RCP04-NPM-Artifact/print-azuredevops-module/index.js -------------------------------------------------------------------------------- /Chapter07/RCP04-NPM-Artifact/print-azuredevops-module/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter07/RCP04-NPM-Artifact/print-azuredevops-module/package-lock.json -------------------------------------------------------------------------------- /Chapter07/RCP04-NPM-Artifact/print-azuredevops-module/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter07/RCP04-NPM-Artifact/print-azuredevops-module/package.json -------------------------------------------------------------------------------- /Chapter07/RCP04-NPM-Artifact/print-azuredevops-module/readme.md: -------------------------------------------------------------------------------- 1 | ## Introduction 2 | 3 | This is a demo NPM package which just prints Azure DevOps Server 2019 -------------------------------------------------------------------------------- /Chapter07/RCP04-NPM-Artifact/use-print-azuredevops-module/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter07/RCP04-NPM-Artifact/use-print-azuredevops-module/.npmrc -------------------------------------------------------------------------------- /Chapter07/RCP04-NPM-Artifact/use-print-azuredevops-module/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter07/RCP04-NPM-Artifact/use-print-azuredevops-module/package-lock.json -------------------------------------------------------------------------------- /Chapter07/RCP04-NPM-Artifact/use-print-azuredevops-module/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter07/RCP04-NPM-Artifact/use-print-azuredevops-module/package.json -------------------------------------------------------------------------------- /Chapter07/RCP04-NPM-Artifact/use-print-azuredevops-module/print.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter07/RCP04-NPM-Artifact/use-print-azuredevops-module/print.js -------------------------------------------------------------------------------- /Chapter08/RCP02-CleanFolder-Extensions/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP02-CleanFolder-Extensions/azure-pipelines.yml -------------------------------------------------------------------------------- /Chapter08/RCP02-CleanFolder-Extensions/clean-folder/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP02-CleanFolder-Extensions/clean-folder/.gitignore -------------------------------------------------------------------------------- /Chapter08/RCP02-CleanFolder-Extensions/clean-folder/images/logo128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP02-CleanFolder-Extensions/clean-folder/images/logo128.png -------------------------------------------------------------------------------- /Chapter08/RCP02-CleanFolder-Extensions/clean-folder/images/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP02-CleanFolder-Extensions/clean-folder/images/logo512.png -------------------------------------------------------------------------------- /Chapter08/RCP02-CleanFolder-Extensions/clean-folder/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP02-CleanFolder-Extensions/clean-folder/images/screenshot.png -------------------------------------------------------------------------------- /Chapter08/RCP02-CleanFolder-Extensions/clean-folder/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP02-CleanFolder-Extensions/clean-folder/package-lock.json -------------------------------------------------------------------------------- /Chapter08/RCP02-CleanFolder-Extensions/clean-folder/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP02-CleanFolder-Extensions/clean-folder/package.json -------------------------------------------------------------------------------- /Chapter08/RCP02-CleanFolder-Extensions/clean-folder/readme.md: -------------------------------------------------------------------------------- 1 | ## Introduction ## 2 | 3 | A simple demo task to clean the folder. -------------------------------------------------------------------------------- /Chapter08/RCP02-CleanFolder-Extensions/clean-folder/task/.taskkey: -------------------------------------------------------------------------------- 1 | ebe4a902-cf25-41ce-bf83-21ba9621b863 -------------------------------------------------------------------------------- /Chapter08/RCP02-CleanFolder-Extensions/clean-folder/task/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP02-CleanFolder-Extensions/clean-folder/task/icon.png -------------------------------------------------------------------------------- /Chapter08/RCP02-CleanFolder-Extensions/clean-folder/task/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP02-CleanFolder-Extensions/clean-folder/task/index.ts -------------------------------------------------------------------------------- /Chapter08/RCP02-CleanFolder-Extensions/clean-folder/task/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP02-CleanFolder-Extensions/clean-folder/task/package-lock.json -------------------------------------------------------------------------------- /Chapter08/RCP02-CleanFolder-Extensions/clean-folder/task/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP02-CleanFolder-Extensions/clean-folder/task/package.json -------------------------------------------------------------------------------- /Chapter08/RCP02-CleanFolder-Extensions/clean-folder/task/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP02-CleanFolder-Extensions/clean-folder/task/task.json -------------------------------------------------------------------------------- /Chapter08/RCP02-CleanFolder-Extensions/clean-folder/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP02-CleanFolder-Extensions/clean-folder/tsconfig.json -------------------------------------------------------------------------------- /Chapter08/RCP02-CleanFolder-Extensions/clean-folder/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP02-CleanFolder-Extensions/clean-folder/tslint.json -------------------------------------------------------------------------------- /Chapter08/RCP02-CleanFolder-Extensions/clean-folder/vss-extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP02-CleanFolder-Extensions/clean-folder/vss-extension.json -------------------------------------------------------------------------------- /Chapter08/RCP03-UIExtension-Extensions/gherkin-to-testcase/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP03-UIExtension-Extensions/gherkin-to-testcase/.gitignore -------------------------------------------------------------------------------- /Chapter08/RCP03-UIExtension-Extensions/gherkin-to-testcase/images/gen-test-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP03-UIExtension-Extensions/gherkin-to-testcase/images/gen-test-case.png -------------------------------------------------------------------------------- /Chapter08/RCP03-UIExtension-Extensions/gherkin-to-testcase/images/logo128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP03-UIExtension-Extensions/gherkin-to-testcase/images/logo128.png -------------------------------------------------------------------------------- /Chapter08/RCP03-UIExtension-Extensions/gherkin-to-testcase/lib/VSS.SDK.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP03-UIExtension-Extensions/gherkin-to-testcase/lib/VSS.SDK.min.js -------------------------------------------------------------------------------- /Chapter08/RCP03-UIExtension-Extensions/gherkin-to-testcase/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP03-UIExtension-Extensions/gherkin-to-testcase/package.json -------------------------------------------------------------------------------- /Chapter08/RCP03-UIExtension-Extensions/gherkin-to-testcase/readme.md: -------------------------------------------------------------------------------- 1 | # My extension -------------------------------------------------------------------------------- /Chapter08/RCP03-UIExtension-Extensions/gherkin-to-testcase/specs/1.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP03-UIExtension-Extensions/gherkin-to-testcase/specs/1.feature -------------------------------------------------------------------------------- /Chapter08/RCP03-UIExtension-Extensions/gherkin-to-testcase/src/GherkinParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP03-UIExtension-Extensions/gherkin-to-testcase/src/GherkinParser.ts -------------------------------------------------------------------------------- /Chapter08/RCP03-UIExtension-Extensions/gherkin-to-testcase/src/generateTestCase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP03-UIExtension-Extensions/gherkin-to-testcase/src/generateTestCase.html -------------------------------------------------------------------------------- /Chapter08/RCP03-UIExtension-Extensions/gherkin-to-testcase/src/generateTestCase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP03-UIExtension-Extensions/gherkin-to-testcase/src/generateTestCase.ts -------------------------------------------------------------------------------- /Chapter08/RCP03-UIExtension-Extensions/gherkin-to-testcase/src/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP03-UIExtension-Extensions/gherkin-to-testcase/src/main.html -------------------------------------------------------------------------------- /Chapter08/RCP03-UIExtension-Extensions/gherkin-to-testcase/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP03-UIExtension-Extensions/gherkin-to-testcase/src/main.ts -------------------------------------------------------------------------------- /Chapter08/RCP03-UIExtension-Extensions/gherkin-to-testcase/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP03-UIExtension-Extensions/gherkin-to-testcase/tsconfig.json -------------------------------------------------------------------------------- /Chapter08/RCP03-UIExtension-Extensions/gherkin-to-testcase/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP03-UIExtension-Extensions/gherkin-to-testcase/tslint.json -------------------------------------------------------------------------------- /Chapter08/RCP03-UIExtension-Extensions/gherkin-to-testcase/vss-extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP03-UIExtension-Extensions/gherkin-to-testcase/vss-extension.json -------------------------------------------------------------------------------- /Chapter08/RCP03-UIExtension-Extensions/gherkin-to-testcase/webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP03-UIExtension-Extensions/gherkin-to-testcase/webpack.config.dev.js -------------------------------------------------------------------------------- /Chapter08/RCP04-GitLab-Extensions/gitlab-integration/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP04-GitLab-Extensions/gitlab-integration/.gitignore -------------------------------------------------------------------------------- /Chapter08/RCP04-GitLab-Extensions/gitlab-integration/images/gitlab128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP04-GitLab-Extensions/gitlab-integration/images/gitlab128.png -------------------------------------------------------------------------------- /Chapter08/RCP04-GitLab-Extensions/gitlab-integration/images/gitlab16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP04-GitLab-Extensions/gitlab-integration/images/gitlab16.png -------------------------------------------------------------------------------- /Chapter08/RCP04-GitLab-Extensions/gitlab-integration/images/gitlab512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP04-GitLab-Extensions/gitlab-integration/images/gitlab512.png -------------------------------------------------------------------------------- /Chapter08/RCP04-GitLab-Extensions/gitlab-integration/images/screenshots/add-artifact-release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP04-GitLab-Extensions/gitlab-integration/images/screenshots/add-artifact-release.png -------------------------------------------------------------------------------- /Chapter08/RCP04-GitLab-Extensions/gitlab-integration/images/screenshots/add-endpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP04-GitLab-Extensions/gitlab-integration/images/screenshots/add-endpoint.png -------------------------------------------------------------------------------- /Chapter08/RCP04-GitLab-Extensions/gitlab-integration/images/screenshots/add-repo-release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP04-GitLab-Extensions/gitlab-integration/images/screenshots/add-repo-release.png -------------------------------------------------------------------------------- /Chapter08/RCP04-GitLab-Extensions/gitlab-integration/images/screenshots/add-task-build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP04-GitLab-Extensions/gitlab-integration/images/screenshots/add-task-build.png -------------------------------------------------------------------------------- /Chapter08/RCP04-GitLab-Extensions/gitlab-integration/images/screenshots/browse-artifact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP04-GitLab-Extensions/gitlab-integration/images/screenshots/browse-artifact.png -------------------------------------------------------------------------------- /Chapter08/RCP04-GitLab-Extensions/gitlab-integration/images/screenshots/configure-task-build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP04-GitLab-Extensions/gitlab-integration/images/screenshots/configure-task-build.png -------------------------------------------------------------------------------- /Chapter08/RCP04-GitLab-Extensions/gitlab-integration/images/screenshots/create-release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP04-GitLab-Extensions/gitlab-integration/images/screenshots/create-release.png -------------------------------------------------------------------------------- /Chapter08/RCP04-GitLab-Extensions/gitlab-integration/images/screenshots/new-gitlab-endpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP04-GitLab-Extensions/gitlab-integration/images/screenshots/new-gitlab-endpoint.png -------------------------------------------------------------------------------- /Chapter08/RCP04-GitLab-Extensions/gitlab-integration/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP04-GitLab-Extensions/gitlab-integration/package.json -------------------------------------------------------------------------------- /Chapter08/RCP04-GitLab-Extensions/gitlab-integration/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP04-GitLab-Extensions/gitlab-integration/readme.md -------------------------------------------------------------------------------- /Chapter08/RCP04-GitLab-Extensions/gitlab-integration/resources/gitlab.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP04-GitLab-Extensions/gitlab-integration/resources/gitlab.ico -------------------------------------------------------------------------------- /Chapter08/RCP04-GitLab-Extensions/gitlab-integration/tasks/.taskkey: -------------------------------------------------------------------------------- 1 | 44eddf5e-ef3f-4cff-8702-8ebf9a942d58 -------------------------------------------------------------------------------- /Chapter08/RCP04-GitLab-Extensions/gitlab-integration/tasks/DownloadRepo/DownloadRepoV1/gitapi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP04-GitLab-Extensions/gitlab-integration/tasks/DownloadRepo/DownloadRepoV1/gitapi.ts -------------------------------------------------------------------------------- /Chapter08/RCP04-GitLab-Extensions/gitlab-integration/tasks/DownloadRepo/DownloadRepoV1/gitwrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP04-GitLab-Extensions/gitlab-integration/tasks/DownloadRepo/DownloadRepoV1/gitwrapper.ts -------------------------------------------------------------------------------- /Chapter08/RCP04-GitLab-Extensions/gitlab-integration/tasks/DownloadRepo/DownloadRepoV1/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP04-GitLab-Extensions/gitlab-integration/tasks/DownloadRepo/DownloadRepoV1/icon.png -------------------------------------------------------------------------------- /Chapter08/RCP04-GitLab-Extensions/gitlab-integration/tasks/DownloadRepo/DownloadRepoV1/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP04-GitLab-Extensions/gitlab-integration/tasks/DownloadRepo/DownloadRepoV1/index.ts -------------------------------------------------------------------------------- /Chapter08/RCP04-GitLab-Extensions/gitlab-integration/tasks/DownloadRepo/DownloadRepoV1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP04-GitLab-Extensions/gitlab-integration/tasks/DownloadRepo/DownloadRepoV1/package-lock.json -------------------------------------------------------------------------------- /Chapter08/RCP04-GitLab-Extensions/gitlab-integration/tasks/DownloadRepo/DownloadRepoV1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP04-GitLab-Extensions/gitlab-integration/tasks/DownloadRepo/DownloadRepoV1/package.json -------------------------------------------------------------------------------- /Chapter08/RCP04-GitLab-Extensions/gitlab-integration/tasks/DownloadRepo/DownloadRepoV1/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP04-GitLab-Extensions/gitlab-integration/tasks/DownloadRepo/DownloadRepoV1/task.json -------------------------------------------------------------------------------- /Chapter08/RCP04-GitLab-Extensions/gitlab-integration/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP04-GitLab-Extensions/gitlab-integration/tsconfig.json -------------------------------------------------------------------------------- /Chapter08/RCP04-GitLab-Extensions/gitlab-integration/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP04-GitLab-Extensions/gitlab-integration/tslint.json -------------------------------------------------------------------------------- /Chapter08/RCP04-GitLab-Extensions/gitlab-integration/vss-extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/Chapter08/RCP04-GitLab-Extensions/gitlab-integration/vss-extension.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-DevOps-Server-2019-Cookbook-Second-Edition/HEAD/README.md --------------------------------------------------------------------------------