├── .gitignore ├── ApplySemanticVersioningToAssemblies ├── ApplySemanticVersioningToAssemblies.ps1 ├── icon.png ├── icon.svg └── task.json ├── DbUpMigration-extension.json ├── DbUpMigration ├── README.md ├── example.png ├── extension-icon.png ├── task │ ├── Update-Database.ps1 │ ├── Update-DatabaseWithDbUp.ps1 │ ├── icon.png │ ├── lib │ │ ├── dbup-core.4.2.0 │ │ │ └── lib │ │ │ │ └── net35 │ │ │ │ └── dbup-core.dll │ │ └── dbup-sqlserver.4.2.0 │ │ │ └── lib │ │ │ └── net35 │ │ │ └── dbup-sqlserver.dll │ └── task.json └── test │ ├── Invoke-PesterTests.ps1 │ ├── Update-DatabaseWithDbUp.Tests.ps1 │ ├── azuredeploy.json │ └── sql │ ├── flat │ ├── 01-nothing.sql │ ├── 02-table-good.sql │ ├── 03-data-good.sql │ ├── 04-data-bad.sql │ ├── 05-longrunning.sql │ ├── 06-print-log.sql │ ├── 07-error-log.sql │ └── 08-variable-substitution.sql │ └── hierarchy │ ├── 01-table-good.sql │ ├── 02 │ └── 04-data-good.sql │ ├── 03-data-good.sql │ ├── 04 │ └── 02-data-good.sql │ └── 05-data-good.sql ├── Docs └── ApplySemanticVersioningToAssemblies.png ├── GetArmDeploymentOutputs ├── GetArmDeploymentOutputs.ps1 ├── icon.png ├── icon.svg ├── ps_modules │ ├── VstsAzureHelpers_ │ │ ├── ImportFunctions.ps1 │ │ ├── InitializeFunctions.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 │ │ ├── Tests │ │ │ ├── Import-AzureModule.AzurePreferredFallsBack.ps1 │ │ │ ├── Import-AzureModule.AzureRMPreferredFallsBack.ps1 │ │ │ ├── Import-AzureModule.BothPreferredFallsBack.ps1 │ │ │ ├── Import-AzureModule.ThrowsWhenNotFound.ps1 │ │ │ ├── Import-AzureModule.ValidatesClassicVersion.ps1 │ │ │ ├── Import-FromModulePath.ImportsModules.ps1 │ │ │ ├── Import-FromModulePath.ReturnsFalseWhenNotFound.ps1 │ │ │ ├── Import-FromModulePath.ValidatesRMProfileFound.ps1 │ │ │ ├── Import-FromSdkPath.ImportsModule.ps1 │ │ │ ├── Import-FromSdkPath.ReturnsFalseWhenNotFound.ps1 │ │ │ ├── Initialize-Azure.PassesInputs.ps1 │ │ │ ├── Initialize-Azure.ThrowsWhenServiceNameIsNull.ps1 │ │ │ ├── Initialize-AzureSubscription.PassesValuesWhenCertAuth.ps1 │ │ │ ├── Initialize-AzureSubscription.PassesValuesWhenCertAuthAndEnvironment.ps1 │ │ │ ├── Initialize-AzureSubscription.PassesValuesWhenSPAuth.ps1 │ │ │ ├── Initialize-AzureSubscription.PassesValuesWhenUPAuth.ps1 │ │ │ ├── Initialize-AzureSubscription.ThrowsUsefulErrorWhenSPAuthAndAddAccountFails.ps1 │ │ │ ├── Initialize-AzureSubscription.ThrowsUsefulErrorWhenUPAuthAndAddAccountFails.ps1 │ │ │ ├── Initialize-AzureSubscription.ThrowsWhenRMAndCertAuth.ps1 │ │ │ ├── Initialize-AzureSubscription.ThrowsWhenSPAuthAndClassic099.ps1 │ │ │ ├── Initialize-AzureSubscription.ThrowsWhenUnsupportedAuth.ps1 │ │ │ ├── L0.ts │ │ │ ├── OverriddesGlobalDebugPreference.ps1 │ │ │ ├── Set-CurrentAzureRMSubscription.PassesValues.ps1 │ │ │ ├── Set-CurrentAzureSubscription.PassesValues.ps1 │ │ │ └── Set-UserAgent.PassesValues.ps1 │ │ ├── VstsAzureHelpers_.psm1 │ │ ├── module.json │ │ └── tsconfig.json │ └── VstsTaskSdk │ │ ├── FindFunctions.ps1 │ │ ├── InputFunctions.ps1 │ │ ├── LocalizationFunctions.ps1 │ │ ├── LoggingCommandFunctions.ps1 │ │ ├── LongPathFunctions.ps1 │ │ ├── OutFunctions.ps1 │ │ ├── PSGetModuleInfo.xml │ │ ├── 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.psd1 │ │ ├── VstsTaskSdk.psm1 │ │ └── lib.json └── task.json ├── InlinePowerShell ├── InlinePowerShell.ps1 ├── icon.png ├── icon.svg └── task.json ├── Invoke-DbUpMigration.ps1 ├── InvokePester ├── Invoke-Pester.ps1 ├── icon.png ├── icon.svg └── task.json ├── InvokeRestMethod ├── Invoke-RestMethod.ps1 ├── icon.png ├── icon.svg └── task.json ├── LICENSE ├── NugetPublisherWithCredentials ├── NugetPublisherWithCredentials.ps1 ├── icon.png ├── icon.svg └── task.json ├── README.md ├── RoboCopy ├── RoboCopy.ps1 ├── icon.png ├── icon.svg └── task.json ├── XdtTransformation ├── XdtTransformation.ps1 ├── ctt.exe ├── icon.png ├── icon.svg └── task.json └── init.ps1 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/.gitignore -------------------------------------------------------------------------------- /ApplySemanticVersioningToAssemblies/ApplySemanticVersioningToAssemblies.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/ApplySemanticVersioningToAssemblies/ApplySemanticVersioningToAssemblies.ps1 -------------------------------------------------------------------------------- /ApplySemanticVersioningToAssemblies/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/ApplySemanticVersioningToAssemblies/icon.png -------------------------------------------------------------------------------- /ApplySemanticVersioningToAssemblies/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/ApplySemanticVersioningToAssemblies/icon.svg -------------------------------------------------------------------------------- /ApplySemanticVersioningToAssemblies/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/ApplySemanticVersioningToAssemblies/task.json -------------------------------------------------------------------------------- /DbUpMigration-extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/DbUpMigration-extension.json -------------------------------------------------------------------------------- /DbUpMigration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/DbUpMigration/README.md -------------------------------------------------------------------------------- /DbUpMigration/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/DbUpMigration/example.png -------------------------------------------------------------------------------- /DbUpMigration/extension-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/DbUpMigration/extension-icon.png -------------------------------------------------------------------------------- /DbUpMigration/task/Update-Database.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/DbUpMigration/task/Update-Database.ps1 -------------------------------------------------------------------------------- /DbUpMigration/task/Update-DatabaseWithDbUp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/DbUpMigration/task/Update-DatabaseWithDbUp.ps1 -------------------------------------------------------------------------------- /DbUpMigration/task/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/DbUpMigration/task/icon.png -------------------------------------------------------------------------------- /DbUpMigration/task/lib/dbup-core.4.2.0/lib/net35/dbup-core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/DbUpMigration/task/lib/dbup-core.4.2.0/lib/net35/dbup-core.dll -------------------------------------------------------------------------------- /DbUpMigration/task/lib/dbup-sqlserver.4.2.0/lib/net35/dbup-sqlserver.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/DbUpMigration/task/lib/dbup-sqlserver.4.2.0/lib/net35/dbup-sqlserver.dll -------------------------------------------------------------------------------- /DbUpMigration/task/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/DbUpMigration/task/task.json -------------------------------------------------------------------------------- /DbUpMigration/test/Invoke-PesterTests.ps1: -------------------------------------------------------------------------------- 1 | $result = Invoke-Pester -ExcludeTag 'LongRunning' -PassThru -------------------------------------------------------------------------------- /DbUpMigration/test/Update-DatabaseWithDbUp.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/DbUpMigration/test/Update-DatabaseWithDbUp.Tests.ps1 -------------------------------------------------------------------------------- /DbUpMigration/test/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/DbUpMigration/test/azuredeploy.json -------------------------------------------------------------------------------- /DbUpMigration/test/sql/flat/01-nothing.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DbUpMigration/test/sql/flat/02-table-good.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE Person 2 | ( 3 | Id int IDENTITY(1,1) PRIMARY KEY, 4 | Name varchar(255) NOT NULL 5 | ); 6 | -------------------------------------------------------------------------------- /DbUpMigration/test/sql/flat/03-data-good.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO Person (Name) 2 | VALUES ('John'); 3 | -------------------------------------------------------------------------------- /DbUpMigration/test/sql/flat/04-data-bad.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/DbUpMigration/test/sql/flat/04-data-bad.sql -------------------------------------------------------------------------------- /DbUpMigration/test/sql/flat/05-longrunning.sql: -------------------------------------------------------------------------------- 1 | WAITFOR DELAY '00:10:00'; -------------------------------------------------------------------------------- /DbUpMigration/test/sql/flat/06-print-log.sql: -------------------------------------------------------------------------------- 1 | PRINT 'MyPrint' -------------------------------------------------------------------------------- /DbUpMigration/test/sql/flat/07-error-log.sql: -------------------------------------------------------------------------------- 1 | RAISERROR('MyError',16,1) -------------------------------------------------------------------------------- /DbUpMigration/test/sql/flat/08-variable-substitution.sql: -------------------------------------------------------------------------------- 1 | print '$TESTVARIABLE$' -------------------------------------------------------------------------------- /DbUpMigration/test/sql/hierarchy/01-table-good.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE Person 2 | ( 3 | Id int IDENTITY(1,1) PRIMARY KEY, 4 | Name varchar(255) NOT NULL 5 | ); 6 | -------------------------------------------------------------------------------- /DbUpMigration/test/sql/hierarchy/02/04-data-good.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO Person (Name) 2 | VALUES ('John'); 3 | -------------------------------------------------------------------------------- /DbUpMigration/test/sql/hierarchy/03-data-good.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO Person (Name) 2 | VALUES ('John'); 3 | -------------------------------------------------------------------------------- /DbUpMigration/test/sql/hierarchy/04/02-data-good.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO Person (Name) 2 | VALUES ('John'); 3 | -------------------------------------------------------------------------------- /DbUpMigration/test/sql/hierarchy/05-data-good.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO Person (Name) 2 | VALUES ('John'); 3 | -------------------------------------------------------------------------------- /Docs/ApplySemanticVersioningToAssemblies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/Docs/ApplySemanticVersioningToAssemblies.png -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/GetArmDeploymentOutputs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/GetArmDeploymentOutputs.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/icon.png -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/icon.svg -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/ImportFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/ImportFunctions.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/InitializeFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/InitializeFunctions.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Strings/resources.resjson/de-de/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Strings/resources.resjson/de-de/resources.resjson -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Strings/resources.resjson/en-US/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Strings/resources.resjson/en-US/resources.resjson -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Strings/resources.resjson/es-es/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Strings/resources.resjson/es-es/resources.resjson -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Strings/resources.resjson/fr-fr/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Strings/resources.resjson/fr-fr/resources.resjson -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Strings/resources.resjson/it-IT/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Strings/resources.resjson/it-IT/resources.resjson -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Strings/resources.resjson/ja-jp/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Strings/resources.resjson/ja-jp/resources.resjson -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Strings/resources.resjson/ko-KR/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Strings/resources.resjson/ko-KR/resources.resjson -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Strings/resources.resjson/ru-RU/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Strings/resources.resjson/ru-RU/resources.resjson -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Strings/resources.resjson/zh-CN/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Strings/resources.resjson/zh-CN/resources.resjson -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Strings/resources.resjson/zh-TW/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Strings/resources.resjson/zh-TW/resources.resjson -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Import-AzureModule.AzurePreferredFallsBack.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Import-AzureModule.AzurePreferredFallsBack.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Import-AzureModule.AzureRMPreferredFallsBack.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Import-AzureModule.AzureRMPreferredFallsBack.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Import-AzureModule.BothPreferredFallsBack.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Import-AzureModule.BothPreferredFallsBack.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Import-AzureModule.ThrowsWhenNotFound.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Import-AzureModule.ThrowsWhenNotFound.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Import-AzureModule.ValidatesClassicVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Import-AzureModule.ValidatesClassicVersion.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Import-FromModulePath.ImportsModules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Import-FromModulePath.ImportsModules.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Import-FromModulePath.ReturnsFalseWhenNotFound.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Import-FromModulePath.ReturnsFalseWhenNotFound.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Import-FromModulePath.ValidatesRMProfileFound.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Import-FromModulePath.ValidatesRMProfileFound.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Import-FromSdkPath.ImportsModule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Import-FromSdkPath.ImportsModule.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Import-FromSdkPath.ReturnsFalseWhenNotFound.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Import-FromSdkPath.ReturnsFalseWhenNotFound.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Initialize-Azure.PassesInputs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Initialize-Azure.PassesInputs.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Initialize-Azure.ThrowsWhenServiceNameIsNull.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Initialize-Azure.ThrowsWhenServiceNameIsNull.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Initialize-AzureSubscription.PassesValuesWhenCertAuth.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Initialize-AzureSubscription.PassesValuesWhenCertAuth.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Initialize-AzureSubscription.PassesValuesWhenCertAuthAndEnvironment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Initialize-AzureSubscription.PassesValuesWhenCertAuthAndEnvironment.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Initialize-AzureSubscription.PassesValuesWhenSPAuth.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Initialize-AzureSubscription.PassesValuesWhenSPAuth.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Initialize-AzureSubscription.PassesValuesWhenUPAuth.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Initialize-AzureSubscription.PassesValuesWhenUPAuth.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Initialize-AzureSubscription.ThrowsUsefulErrorWhenSPAuthAndAddAccountFails.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Initialize-AzureSubscription.ThrowsUsefulErrorWhenSPAuthAndAddAccountFails.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Initialize-AzureSubscription.ThrowsUsefulErrorWhenUPAuthAndAddAccountFails.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Initialize-AzureSubscription.ThrowsUsefulErrorWhenUPAuthAndAddAccountFails.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Initialize-AzureSubscription.ThrowsWhenRMAndCertAuth.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Initialize-AzureSubscription.ThrowsWhenRMAndCertAuth.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Initialize-AzureSubscription.ThrowsWhenSPAuthAndClassic099.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Initialize-AzureSubscription.ThrowsWhenSPAuthAndClassic099.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Initialize-AzureSubscription.ThrowsWhenUnsupportedAuth.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Initialize-AzureSubscription.ThrowsWhenUnsupportedAuth.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/L0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/L0.ts -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/OverriddesGlobalDebugPreference.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/OverriddesGlobalDebugPreference.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Set-CurrentAzureRMSubscription.PassesValues.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Set-CurrentAzureRMSubscription.PassesValues.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Set-CurrentAzureSubscription.PassesValues.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Set-CurrentAzureSubscription.PassesValues.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Set-UserAgent.PassesValues.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/Tests/Set-UserAgent.PassesValues.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/VstsAzureHelpers_.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/VstsAzureHelpers_.psm1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/module.json -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsAzureHelpers_/tsconfig.json -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/FindFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/FindFunctions.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/InputFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/InputFunctions.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/LocalizationFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/LocalizationFunctions.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/LoggingCommandFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/LoggingCommandFunctions.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/LongPathFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/LongPathFunctions.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/OutFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/OutFunctions.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/PSGetModuleInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/PSGetModuleInfo.xml -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/ServerOMFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/ServerOMFunctions.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/Strings/resources.resjson/it-IT/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/Strings/resources.resjson/it-IT/resources.resjson -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/Strings/resources.resjson/ko-KR/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/Strings/resources.resjson/ko-KR/resources.resjson -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/Strings/resources.resjson/ru-RU/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/Strings/resources.resjson/ru-RU/resources.resjson -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-CN/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-CN/resources.resjson -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-TW/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-TW/resources.resjson -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/ToolFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/ToolFunctions.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/TraceFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/TraceFunctions.ps1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/VstsTaskSdk.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/VstsTaskSdk.psd1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/VstsTaskSdk.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/VstsTaskSdk.psm1 -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/ps_modules/VstsTaskSdk/lib.json -------------------------------------------------------------------------------- /GetArmDeploymentOutputs/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/GetArmDeploymentOutputs/task.json -------------------------------------------------------------------------------- /InlinePowerShell/InlinePowerShell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/InlinePowerShell/InlinePowerShell.ps1 -------------------------------------------------------------------------------- /InlinePowerShell/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/InlinePowerShell/icon.png -------------------------------------------------------------------------------- /InlinePowerShell/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/InlinePowerShell/icon.svg -------------------------------------------------------------------------------- /InlinePowerShell/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/InlinePowerShell/task.json -------------------------------------------------------------------------------- /Invoke-DbUpMigration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/Invoke-DbUpMigration.ps1 -------------------------------------------------------------------------------- /InvokePester/Invoke-Pester.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/InvokePester/Invoke-Pester.ps1 -------------------------------------------------------------------------------- /InvokePester/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/InvokePester/icon.png -------------------------------------------------------------------------------- /InvokePester/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/InvokePester/icon.svg -------------------------------------------------------------------------------- /InvokePester/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/InvokePester/task.json -------------------------------------------------------------------------------- /InvokeRestMethod/Invoke-RestMethod.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/InvokeRestMethod/Invoke-RestMethod.ps1 -------------------------------------------------------------------------------- /InvokeRestMethod/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/InvokeRestMethod/icon.png -------------------------------------------------------------------------------- /InvokeRestMethod/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/InvokeRestMethod/icon.svg -------------------------------------------------------------------------------- /InvokeRestMethod/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/InvokeRestMethod/task.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/LICENSE -------------------------------------------------------------------------------- /NugetPublisherWithCredentials/NugetPublisherWithCredentials.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/NugetPublisherWithCredentials/NugetPublisherWithCredentials.ps1 -------------------------------------------------------------------------------- /NugetPublisherWithCredentials/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/NugetPublisherWithCredentials/icon.png -------------------------------------------------------------------------------- /NugetPublisherWithCredentials/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/NugetPublisherWithCredentials/icon.svg -------------------------------------------------------------------------------- /NugetPublisherWithCredentials/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/NugetPublisherWithCredentials/task.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/README.md -------------------------------------------------------------------------------- /RoboCopy/RoboCopy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/RoboCopy/RoboCopy.ps1 -------------------------------------------------------------------------------- /RoboCopy/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/RoboCopy/icon.png -------------------------------------------------------------------------------- /RoboCopy/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/RoboCopy/icon.svg -------------------------------------------------------------------------------- /RoboCopy/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/RoboCopy/task.json -------------------------------------------------------------------------------- /XdtTransformation/XdtTransformation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/XdtTransformation/XdtTransformation.ps1 -------------------------------------------------------------------------------- /XdtTransformation/ctt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/XdtTransformation/ctt.exe -------------------------------------------------------------------------------- /XdtTransformation/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/XdtTransformation/icon.png -------------------------------------------------------------------------------- /XdtTransformation/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/XdtTransformation/icon.svg -------------------------------------------------------------------------------- /XdtTransformation/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/XdtTransformation/task.json -------------------------------------------------------------------------------- /init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanclasson/vso-agent-tasks/HEAD/init.ps1 --------------------------------------------------------------------------------