├── .gitIgnore ├── .github ├── CODEOWNERS ├── FUNDING.yml └── renovate.json ├── LICENSE.md ├── PRIVACY.md ├── Pre-Build.ps1 ├── README.md ├── azure-pipelines.yml ├── commands.json ├── extension ├── Images │ ├── Screenshots │ │ ├── tfvc-add.png │ │ ├── tfvc-checkin.png │ │ └── tfvc-tasks.png │ ├── donate.png │ ├── extension-icon.png │ ├── icons-small.psd │ └── icons.psd ├── Licenses │ └── vso-agent-tasks-license.txt ├── extension-manifest.json └── extension-overview.md ├── tf-vc-add ├── v1 │ ├── TfvcAdd.ps1 │ ├── icon.png │ └── task.json ├── v2 │ ├── TfvcAdd.v3.ps1 │ ├── icon.png │ └── task.json └── v3 │ ├── TfvcAdd.v3.ps1 │ ├── icon.png │ └── task.json ├── tf-vc-checkin ├── v1 │ ├── TfvcCheckin.ps1 │ ├── icon.png │ └── task.json ├── v2 │ ├── TfvcCheckin.v3.ps1 │ ├── icon.png │ └── task.json └── v3 │ ├── TfvcCheckin.v3.ps1 │ ├── icon.png │ └── task.json ├── tf-vc-checkout ├── v1 │ ├── TfvcCheckout.ps1 │ ├── icon.png │ └── task.json ├── v2 │ ├── TfvcCheckout.v3.ps1 │ ├── icon.png │ └── task.json └── v3 │ ├── TfvcCheckout.v3.ps1 │ ├── icon.png │ └── task.json ├── tf-vc-delete ├── v1 │ ├── TfvcDelete.ps1 │ ├── icon.png │ └── task.json ├── v2 │ ├── TfvcDelete.v3.ps1 │ ├── icon.png │ └── task.json └── v3 │ ├── TfvcDelete.v3.ps1 │ ├── icon.png │ └── task.json ├── tf-vc-dontsync ├── v2 │ ├── TfvcDontSync.v3.ps1 │ ├── icon.png │ └── task.json └── v3 │ ├── TfvcDontSync.v3.ps1 │ ├── icon.png │ └── task.json ├── tf-vc-shared ├── v1 │ └── vsts-tfvc-shared.psm1 ├── v2 │ └── ps_modules │ │ ├── VstsTaskSdk │ │ ├── FindFunctions.ps1 │ │ ├── InputFunctions.ps1 │ │ ├── LegacyFindFunctions.ps1 │ │ ├── LocalizationFunctions.ps1 │ │ ├── LoggingCommandFunctions.ps1 │ │ ├── LongPathFunctions.ps1 │ │ ├── Minimatch.dll │ │ ├── OutFunctions.ps1 │ │ ├── ServerOMFunctions.ps1 │ │ ├── Strings │ │ │ └── resources.resjson │ │ │ │ ├── de-de │ │ │ │ └── resources.resjson │ │ │ │ ├── en-US │ │ │ │ └── resources.resjson │ │ │ │ ├── es-es │ │ │ │ └── resources.resjson │ │ │ │ ├── fr-fr │ │ │ │ └── resources.resjson │ │ │ │ ├── it-IT │ │ │ │ └── resources.resjson │ │ │ │ ├── ja-jp │ │ │ │ └── resources.resjson │ │ │ │ ├── ko-KR │ │ │ │ └── resources.resjson │ │ │ │ ├── ru-RU │ │ │ │ └── resources.resjson │ │ │ │ ├── zh-CN │ │ │ │ └── resources.resjson │ │ │ │ └── zh-TW │ │ │ │ └── resources.resjson │ │ ├── ToolFunctions.ps1 │ │ ├── TraceFunctions.ps1 │ │ ├── VstsTaskSdk.dll │ │ ├── VstsTaskSdk.psd1 │ │ ├── VstsTaskSdk.psm1 │ │ └── lib.json │ │ └── VstsTfvcShared │ │ ├── TlsHelper │ │ ├── Strings │ │ │ └── resources.resjson │ │ │ │ ├── de-de │ │ │ │ └── resources.resjson │ │ │ │ ├── en-US │ │ │ │ └── resources.resjson │ │ │ │ ├── es-es │ │ │ │ └── resources.resjson │ │ │ │ ├── fr-fr │ │ │ │ └── resources.resjson │ │ │ │ ├── it-IT │ │ │ │ └── resources.resjson │ │ │ │ ├── ja-jp │ │ │ │ └── resources.resjson │ │ │ │ ├── ko-KR │ │ │ │ └── resources.resjson │ │ │ │ ├── ru-RU │ │ │ │ └── resources.resjson │ │ │ │ ├── zh-CN │ │ │ │ └── resources.resjson │ │ │ │ └── zh-TW │ │ │ │ └── resources.resjson │ │ ├── TlsHelper.psm1 │ │ └── module.json │ │ ├── VstsTfvcShared.psd1 │ │ ├── VstsTfvcShared.psm1 │ │ └── vswhere.exe └── v3 │ └── ps_modules │ ├── VstsTaskSdk │ ├── FindFunctions.ps1 │ ├── InputFunctions.ps1 │ ├── LegacyFindFunctions.ps1 │ ├── LocalizationFunctions.ps1 │ ├── LoggingCommandFunctions.ps1 │ ├── LongPathFunctions.ps1 │ ├── Minimatch.dll │ ├── OutFunctions.ps1 │ ├── ServerOMFunctions.ps1 │ ├── Strings │ │ └── resources.resjson │ │ │ ├── de-DE │ │ │ └── resources.resjson │ │ │ ├── en-US │ │ │ └── resources.resjson │ │ │ ├── es-ES │ │ │ └── resources.resjson │ │ │ ├── fr-FR │ │ │ └── resources.resjson │ │ │ ├── it-IT │ │ │ └── resources.resjson │ │ │ ├── ja-JP │ │ │ └── resources.resjson │ │ │ ├── ko-KR │ │ │ └── resources.resjson │ │ │ ├── ru-RU │ │ │ └── resources.resjson │ │ │ ├── zh-CN │ │ │ └── resources.resjson │ │ │ └── zh-TW │ │ │ └── resources.resjson │ ├── ToolFunctions.ps1 │ ├── TraceFunctions.ps1 │ ├── VstsTaskSdk.dll │ ├── VstsTaskSdk.psd1 │ ├── VstsTaskSdk.psm1 │ └── lib.json │ └── VstsTfvcShared │ ├── TlsHelper │ ├── Strings │ │ └── resources.resjson │ │ │ ├── de-de │ │ │ └── resources.resjson │ │ │ ├── en-US │ │ │ └── resources.resjson │ │ │ ├── es-es │ │ │ └── resources.resjson │ │ │ ├── fr-fr │ │ │ └── resources.resjson │ │ │ ├── it-IT │ │ │ └── resources.resjson │ │ │ ├── ja-jp │ │ │ └── resources.resjson │ │ │ ├── ko-KR │ │ │ └── resources.resjson │ │ │ ├── ru-RU │ │ │ └── resources.resjson │ │ │ ├── zh-CN │ │ │ └── resources.resjson │ │ │ └── zh-TW │ │ │ └── resources.resjson │ ├── TlsHelper.psm1 │ └── module.json │ ├── VstsTfvcShared.psd1 │ └── VstsTfvcShared.psm1 ├── tf-vc-shelveset-update ├── v1 │ ├── TfvcUpdateShelveset.ps1 │ ├── icon.png │ └── task.json ├── v2 │ ├── TfvcUpdateShelveset.v3.ps1 │ ├── icon.png │ └── task.json └── v3 │ ├── TfvcUpdateShelveset.v3.ps1 │ ├── icon.png │ └── task.json ├── tf-vc-undo ├── v1 │ ├── TfvcUndo.ps1 │ ├── icon.png │ └── task.json ├── v2 │ ├── TfvcUndo.v3.ps1 │ ├── icon.png │ └── task.json └── v3 │ ├── TfvcUndo.v3.ps1 │ ├── icon.png │ └── task.json └── vss-extension.json /.gitIgnore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/.gitIgnore -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @jessehouwing 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/PRIVACY.md -------------------------------------------------------------------------------- /Pre-Build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/Pre-Build.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/commands.json -------------------------------------------------------------------------------- /extension/Images/Screenshots/tfvc-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/extension/Images/Screenshots/tfvc-add.png -------------------------------------------------------------------------------- /extension/Images/Screenshots/tfvc-checkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/extension/Images/Screenshots/tfvc-checkin.png -------------------------------------------------------------------------------- /extension/Images/Screenshots/tfvc-tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/extension/Images/Screenshots/tfvc-tasks.png -------------------------------------------------------------------------------- /extension/Images/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/extension/Images/donate.png -------------------------------------------------------------------------------- /extension/Images/extension-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/extension/Images/extension-icon.png -------------------------------------------------------------------------------- /extension/Images/icons-small.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/extension/Images/icons-small.psd -------------------------------------------------------------------------------- /extension/Images/icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/extension/Images/icons.psd -------------------------------------------------------------------------------- /extension/Licenses/vso-agent-tasks-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/extension/Licenses/vso-agent-tasks-license.txt -------------------------------------------------------------------------------- /extension/extension-manifest.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extension/extension-overview.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tf-vc-add/v1/TfvcAdd.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-add/v1/TfvcAdd.ps1 -------------------------------------------------------------------------------- /tf-vc-add/v1/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-add/v1/icon.png -------------------------------------------------------------------------------- /tf-vc-add/v1/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-add/v1/task.json -------------------------------------------------------------------------------- /tf-vc-add/v2/TfvcAdd.v3.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-add/v2/TfvcAdd.v3.ps1 -------------------------------------------------------------------------------- /tf-vc-add/v2/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-add/v2/icon.png -------------------------------------------------------------------------------- /tf-vc-add/v2/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-add/v2/task.json -------------------------------------------------------------------------------- /tf-vc-add/v3/TfvcAdd.v3.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-add/v3/TfvcAdd.v3.ps1 -------------------------------------------------------------------------------- /tf-vc-add/v3/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-add/v3/icon.png -------------------------------------------------------------------------------- /tf-vc-add/v3/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-add/v3/task.json -------------------------------------------------------------------------------- /tf-vc-checkin/v1/TfvcCheckin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-checkin/v1/TfvcCheckin.ps1 -------------------------------------------------------------------------------- /tf-vc-checkin/v1/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-checkin/v1/icon.png -------------------------------------------------------------------------------- /tf-vc-checkin/v1/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-checkin/v1/task.json -------------------------------------------------------------------------------- /tf-vc-checkin/v2/TfvcCheckin.v3.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-checkin/v2/TfvcCheckin.v3.ps1 -------------------------------------------------------------------------------- /tf-vc-checkin/v2/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-checkin/v2/icon.png -------------------------------------------------------------------------------- /tf-vc-checkin/v2/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-checkin/v2/task.json -------------------------------------------------------------------------------- /tf-vc-checkin/v3/TfvcCheckin.v3.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-checkin/v3/TfvcCheckin.v3.ps1 -------------------------------------------------------------------------------- /tf-vc-checkin/v3/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-checkin/v3/icon.png -------------------------------------------------------------------------------- /tf-vc-checkin/v3/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-checkin/v3/task.json -------------------------------------------------------------------------------- /tf-vc-checkout/v1/TfvcCheckout.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-checkout/v1/TfvcCheckout.ps1 -------------------------------------------------------------------------------- /tf-vc-checkout/v1/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-checkout/v1/icon.png -------------------------------------------------------------------------------- /tf-vc-checkout/v1/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-checkout/v1/task.json -------------------------------------------------------------------------------- /tf-vc-checkout/v2/TfvcCheckout.v3.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-checkout/v2/TfvcCheckout.v3.ps1 -------------------------------------------------------------------------------- /tf-vc-checkout/v2/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-checkout/v2/icon.png -------------------------------------------------------------------------------- /tf-vc-checkout/v2/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-checkout/v2/task.json -------------------------------------------------------------------------------- /tf-vc-checkout/v3/TfvcCheckout.v3.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-checkout/v3/TfvcCheckout.v3.ps1 -------------------------------------------------------------------------------- /tf-vc-checkout/v3/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-checkout/v3/icon.png -------------------------------------------------------------------------------- /tf-vc-checkout/v3/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-checkout/v3/task.json -------------------------------------------------------------------------------- /tf-vc-delete/v1/TfvcDelete.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-delete/v1/TfvcDelete.ps1 -------------------------------------------------------------------------------- /tf-vc-delete/v1/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-delete/v1/icon.png -------------------------------------------------------------------------------- /tf-vc-delete/v1/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-delete/v1/task.json -------------------------------------------------------------------------------- /tf-vc-delete/v2/TfvcDelete.v3.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-delete/v2/TfvcDelete.v3.ps1 -------------------------------------------------------------------------------- /tf-vc-delete/v2/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-delete/v2/icon.png -------------------------------------------------------------------------------- /tf-vc-delete/v2/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-delete/v2/task.json -------------------------------------------------------------------------------- /tf-vc-delete/v3/TfvcDelete.v3.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-delete/v3/TfvcDelete.v3.ps1 -------------------------------------------------------------------------------- /tf-vc-delete/v3/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-delete/v3/icon.png -------------------------------------------------------------------------------- /tf-vc-delete/v3/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-delete/v3/task.json -------------------------------------------------------------------------------- /tf-vc-dontsync/v2/TfvcDontSync.v3.ps1: -------------------------------------------------------------------------------- 1 | Set-VstsTaskVariable -name "Build.SyncSources" -value "false" -------------------------------------------------------------------------------- /tf-vc-dontsync/v2/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-dontsync/v2/icon.png -------------------------------------------------------------------------------- /tf-vc-dontsync/v2/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-dontsync/v2/task.json -------------------------------------------------------------------------------- /tf-vc-dontsync/v3/TfvcDontSync.v3.ps1: -------------------------------------------------------------------------------- 1 | Set-VstsTaskVariable -name "Build.SyncSources" -value "false" -------------------------------------------------------------------------------- /tf-vc-dontsync/v3/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-dontsync/v3/icon.png -------------------------------------------------------------------------------- /tf-vc-dontsync/v3/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-dontsync/v3/task.json -------------------------------------------------------------------------------- /tf-vc-shared/v1/vsts-tfvc-shared.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v1/vsts-tfvc-shared.psm1 -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTaskSdk/FindFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTaskSdk/FindFunctions.ps1 -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTaskSdk/InputFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTaskSdk/InputFunctions.ps1 -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTaskSdk/LegacyFindFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTaskSdk/LegacyFindFunctions.ps1 -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTaskSdk/LocalizationFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTaskSdk/LocalizationFunctions.ps1 -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTaskSdk/LoggingCommandFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTaskSdk/LoggingCommandFunctions.ps1 -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTaskSdk/LongPathFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTaskSdk/LongPathFunctions.ps1 -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTaskSdk/Minimatch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTaskSdk/Minimatch.dll -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTaskSdk/OutFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTaskSdk/OutFunctions.ps1 -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTaskSdk/ServerOMFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTaskSdk/ServerOMFunctions.ps1 -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTaskSdk/Strings/resources.resjson/it-IT/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTaskSdk/Strings/resources.resjson/it-IT/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTaskSdk/Strings/resources.resjson/ko-KR/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTaskSdk/Strings/resources.resjson/ko-KR/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTaskSdk/Strings/resources.resjson/ru-RU/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTaskSdk/Strings/resources.resjson/ru-RU/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-CN/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-CN/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-TW/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-TW/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTaskSdk/ToolFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTaskSdk/ToolFunctions.ps1 -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTaskSdk/TraceFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTaskSdk/TraceFunctions.ps1 -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTaskSdk/VstsTaskSdk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTaskSdk/VstsTaskSdk.dll -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTaskSdk/VstsTaskSdk.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTaskSdk/VstsTaskSdk.psd1 -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTaskSdk/VstsTaskSdk.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTaskSdk/VstsTaskSdk.psm1 -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTaskSdk/lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTaskSdk/lib.json -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/de-de/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/de-de/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/en-US/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/en-US/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/es-es/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/es-es/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/fr-fr/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/fr-fr/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/it-IT/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/it-IT/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/ja-jp/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/ja-jp/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/ko-KR/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/ko-KR/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/ru-RU/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/ru-RU/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/zh-CN/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/zh-CN/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/zh-TW/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/zh-TW/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTfvcShared/TlsHelper/TlsHelper.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTfvcShared/TlsHelper/TlsHelper.psm1 -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTfvcShared/TlsHelper/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTfvcShared/TlsHelper/module.json -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTfvcShared/VstsTfvcShared.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTfvcShared/VstsTfvcShared.psd1 -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTfvcShared/VstsTfvcShared.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTfvcShared/VstsTfvcShared.psm1 -------------------------------------------------------------------------------- /tf-vc-shared/v2/ps_modules/VstsTfvcShared/vswhere.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v2/ps_modules/VstsTfvcShared/vswhere.exe -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTaskSdk/FindFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTaskSdk/FindFunctions.ps1 -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTaskSdk/InputFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTaskSdk/InputFunctions.ps1 -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTaskSdk/LegacyFindFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTaskSdk/LegacyFindFunctions.ps1 -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTaskSdk/LocalizationFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTaskSdk/LocalizationFunctions.ps1 -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTaskSdk/LoggingCommandFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTaskSdk/LoggingCommandFunctions.ps1 -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTaskSdk/LongPathFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTaskSdk/LongPathFunctions.ps1 -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTaskSdk/Minimatch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTaskSdk/Minimatch.dll -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTaskSdk/OutFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTaskSdk/OutFunctions.ps1 -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTaskSdk/ServerOMFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTaskSdk/ServerOMFunctions.ps1 -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTaskSdk/Strings/resources.resjson/de-DE/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTaskSdk/Strings/resources.resjson/de-DE/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTaskSdk/Strings/resources.resjson/es-ES/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTaskSdk/Strings/resources.resjson/es-ES/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTaskSdk/Strings/resources.resjson/fr-FR/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTaskSdk/Strings/resources.resjson/fr-FR/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTaskSdk/Strings/resources.resjson/it-IT/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTaskSdk/Strings/resources.resjson/it-IT/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTaskSdk/Strings/resources.resjson/ja-JP/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTaskSdk/Strings/resources.resjson/ja-JP/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTaskSdk/Strings/resources.resjson/ko-KR/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTaskSdk/Strings/resources.resjson/ko-KR/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTaskSdk/Strings/resources.resjson/ru-RU/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTaskSdk/Strings/resources.resjson/ru-RU/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-CN/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-CN/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-TW/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-TW/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTaskSdk/ToolFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTaskSdk/ToolFunctions.ps1 -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTaskSdk/TraceFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTaskSdk/TraceFunctions.ps1 -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTaskSdk/VstsTaskSdk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTaskSdk/VstsTaskSdk.dll -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTaskSdk/VstsTaskSdk.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTaskSdk/VstsTaskSdk.psd1 -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTaskSdk/VstsTaskSdk.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTaskSdk/VstsTaskSdk.psm1 -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTaskSdk/lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTaskSdk/lib.json -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/de-de/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/de-de/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/en-US/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/en-US/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/es-es/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/es-es/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/fr-fr/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/fr-fr/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/it-IT/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/it-IT/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/ja-jp/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/ja-jp/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/ko-KR/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/ko-KR/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/ru-RU/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/ru-RU/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/zh-CN/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/zh-CN/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/zh-TW/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTfvcShared/TlsHelper/Strings/resources.resjson/zh-TW/resources.resjson -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTfvcShared/TlsHelper/TlsHelper.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTfvcShared/TlsHelper/TlsHelper.psm1 -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTfvcShared/TlsHelper/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTfvcShared/TlsHelper/module.json -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTfvcShared/VstsTfvcShared.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTfvcShared/VstsTfvcShared.psd1 -------------------------------------------------------------------------------- /tf-vc-shared/v3/ps_modules/VstsTfvcShared/VstsTfvcShared.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shared/v3/ps_modules/VstsTfvcShared/VstsTfvcShared.psm1 -------------------------------------------------------------------------------- /tf-vc-shelveset-update/v1/TfvcUpdateShelveset.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shelveset-update/v1/TfvcUpdateShelveset.ps1 -------------------------------------------------------------------------------- /tf-vc-shelveset-update/v1/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shelveset-update/v1/icon.png -------------------------------------------------------------------------------- /tf-vc-shelveset-update/v1/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shelveset-update/v1/task.json -------------------------------------------------------------------------------- /tf-vc-shelveset-update/v2/TfvcUpdateShelveset.v3.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shelveset-update/v2/TfvcUpdateShelveset.v3.ps1 -------------------------------------------------------------------------------- /tf-vc-shelveset-update/v2/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shelveset-update/v2/icon.png -------------------------------------------------------------------------------- /tf-vc-shelveset-update/v2/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shelveset-update/v2/task.json -------------------------------------------------------------------------------- /tf-vc-shelveset-update/v3/TfvcUpdateShelveset.v3.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shelveset-update/v3/TfvcUpdateShelveset.v3.ps1 -------------------------------------------------------------------------------- /tf-vc-shelveset-update/v3/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shelveset-update/v3/icon.png -------------------------------------------------------------------------------- /tf-vc-shelveset-update/v3/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-shelveset-update/v3/task.json -------------------------------------------------------------------------------- /tf-vc-undo/v1/TfvcUndo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-undo/v1/TfvcUndo.ps1 -------------------------------------------------------------------------------- /tf-vc-undo/v1/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-undo/v1/icon.png -------------------------------------------------------------------------------- /tf-vc-undo/v1/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-undo/v1/task.json -------------------------------------------------------------------------------- /tf-vc-undo/v2/TfvcUndo.v3.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-undo/v2/TfvcUndo.v3.ps1 -------------------------------------------------------------------------------- /tf-vc-undo/v2/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-undo/v2/icon.png -------------------------------------------------------------------------------- /tf-vc-undo/v2/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-undo/v2/task.json -------------------------------------------------------------------------------- /tf-vc-undo/v3/TfvcUndo.v3.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-undo/v3/TfvcUndo.v3.ps1 -------------------------------------------------------------------------------- /tf-vc-undo/v3/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-undo/v3/icon.png -------------------------------------------------------------------------------- /tf-vc-undo/v3/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/tf-vc-undo/v3/task.json -------------------------------------------------------------------------------- /vss-extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/azure-pipelines-tfvc-tasks/HEAD/vss-extension.json --------------------------------------------------------------------------------