├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── README.md ├── examples ├── CubeAtCompatibility1200 │ ├── CubeAtCompatibility1200.smproj │ └── Model.bim ├── CubeAtCompatibility1500 │ ├── CubeAtCompatibility1500.smproj │ └── Model.bim ├── CubeAtCompatibility1600 │ ├── CubeAtCompatibility1600.smproj │ └── Model.bim ├── DatabaseToPublish │ ├── DatabaseToPublish.CI.publish.xml │ ├── DatabaseToPublish.LOCAL.publish.xml │ ├── DatabaseToPublish.NoVars.publish.xml │ ├── DatabaseToPublish.Upgrade.publish.xml │ ├── DatabaseToPublish.sln │ ├── DatabaseToPublish.sqlproj │ ├── Scripts │ │ └── Post-Deploy │ │ │ └── PostDeploy.sql │ └── dbo │ │ └── Tables │ │ ├── MyOnlyTable.sql │ │ ├── MyOtherTable.sql │ │ └── MyTable.sql ├── DatabaseToPublishToAzureSqlDB │ ├── DatabaseToPublishToAzure.Upgrade.publish.xml │ ├── DatabaseToPublishToAzureSqlDB.sln │ ├── DatabaseToPublishToAzureSqlDB.sqlproj │ ├── Scripts │ │ └── Post-Deploy │ │ │ └── PostDeploy.sql │ └── dbo │ │ └── Tables │ │ ├── MyOnlyTable.sql │ │ ├── MyOtherTable.sql │ │ └── MyTable.sql ├── ForTests │ ├── CustomSqlPackageInstallLocation │ │ └── SqlPackage.exe │ ├── DeploymentWizard │ │ └── Microsoft.AnalysisServices.Deployment.exe │ ├── InvalidDataSourceConnection │ │ ├── Model.asdatabase │ │ ├── Model.deploymentoptions │ │ └── Model.deploymenttargets │ ├── MissingDeploymentOptions │ │ ├── Model.asdatabase │ │ └── Model.deploymenttargets │ └── MissingDeploymentTargets │ │ ├── Model.asdatabase │ │ └── Model.deploymentoptions ├── PopulateMyOnlyTable.sqlgen ├── SolutionToPublish.sln └── SqlCmdScripts │ ├── MultipleScripts │ ├── 001_InsertIntoTable.sql │ ├── 005_InsertIntoTable.sql │ ├── 010_InsertIntoTable.sql │ └── SqlCmdVariables.json │ ├── PlainScripts │ ├── 001_InsertIntoTable.sql │ ├── 005_InsertIntoTable.sql │ └── 010_InsertIntoTable.sql │ ├── QueryTable.sql │ └── SingleScripts │ ├── InsertIntoMyOtherTableSqlCmd1.sql │ ├── InsertIntoMyOtherTableSqlCmd2.sql │ └── InsertIntoMyOtherTableSqlCmd3.sql ├── extensions ├── CopyExamplesToPsModules.ps1 ├── CopyPsModules.ps1 ├── CopyVstsTaskSdk.ps1 ├── DeployDatabase │ ├── DeployDatabaseTask │ │ ├── PublishDacPacTask.ps1 │ │ ├── icon.png │ │ ├── ps_modules │ │ │ ├── PublishDacPac │ │ │ │ ├── LICENSE │ │ │ │ ├── PublishDacPac.psd1 │ │ │ │ ├── PublishDacPac.psm1 │ │ │ │ ├── README.md │ │ │ │ ├── en-US │ │ │ │ │ ├── PublishDacPac-help.xml │ │ │ │ │ └── about_PublishDacPac.help.txt │ │ │ │ └── public │ │ │ │ │ ├── Find-SqlPackageLocations.ps1 │ │ │ │ │ ├── Get-SqlDatabasePath.ps1 │ │ │ │ │ ├── Get-SqlPackagePath.ps1 │ │ │ │ │ ├── Invoke-ExternalCommand.ps1 │ │ │ │ │ ├── Ping-SqlDatabase.ps1 │ │ │ │ │ ├── Ping-SqlServer.ps1 │ │ │ │ │ ├── Publish-DacPac.ps1 │ │ │ │ │ ├── Remove-Database.ps1 │ │ │ │ │ └── Select-SqlPackageVersion.ps1 │ │ │ └── VstsTaskSdk │ │ │ │ ├── FindFunctions.ps1 │ │ │ │ ├── InputFunctions.ps1 │ │ │ │ ├── LegacyFindFunctions.ps1 │ │ │ │ ├── LocalizationFunctions.ps1 │ │ │ │ ├── LoggingCommandFunctions.ps1 │ │ │ │ ├── LongPathFunctions.ps1 │ │ │ │ ├── Minimatch.dll │ │ │ │ ├── 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.dll │ │ │ │ ├── VstsTaskSdk.psd1 │ │ │ │ ├── VstsTaskSdk.psm1 │ │ │ │ └── lib.json │ │ └── task.json │ ├── images │ │ ├── BuildPipelineSidebar.png │ │ ├── DacPublishProfile-CI.png │ │ ├── DonateNowWithPayPal.png │ │ ├── ExamplePipeline01.png │ │ ├── ExamplePipeline02.png │ │ ├── ExamplePipeline02Variables.png │ │ ├── ExamplePipeline02VariablesHighlighted.png │ │ ├── ExamplePipeline03.png │ │ ├── ExamplePipeline05.png │ │ ├── ExamplePipeline10BuildReport.png │ │ ├── ExamplePipeline11SucessfulBuild.png │ │ ├── ExamplePipelineSelectPublishDacPacTask.png │ │ ├── PublishDacPac-JSON-Input.png │ │ ├── PublishDacPac-SqlCmdVariables-MultilineTextInput-Dropdown.png │ │ ├── PublishDacPac-SqlCmdVariables-MultilineTextInput.png │ │ ├── SqlServerIcon.png │ │ ├── SqlServerLogo300.png │ │ ├── TaskDetail.png │ │ ├── TaskDetailAdvanced.png │ │ ├── TaskDetailAdvancedWithDropDown.png │ │ ├── TaskDetailSqlPackageVersion.png │ │ ├── VisualStudio01SampleDatabaseProject.png │ │ ├── VisualStudio01SampleDatabaseProjectHighlighted.png │ │ ├── VisualStudio02PublishDialogSaveProfile.png │ │ ├── VisualStudio03TypicalCiSettings.png │ │ ├── VisualStudioPublishDialog.png │ │ ├── deploy.png │ │ ├── donate.png │ │ └── publishDacpacJSON-Input.png │ ├── license.md │ ├── readme.md │ └── vss-extension.json ├── DeploySsisProject │ ├── BuildSsisProjectTask │ │ ├── Standalone SQL Server Integration Services (SSIS) DevOps Tools - SQL Server Integration Services (SSIS) - Microsoft Docs.url │ │ └── task.json │ ├── CreateSsisFolderTask │ │ ├── CreateSsisFolder.sql │ │ ├── CreateSsisFolderTask.ps1 │ │ ├── icon.png │ │ ├── ps_modules │ │ │ └── VstsTaskSdk │ │ │ │ ├── FindFunctions.ps1 │ │ │ │ ├── InputFunctions.ps1 │ │ │ │ ├── LegacyFindFunctions.ps1 │ │ │ │ ├── LocalizationFunctions.ps1 │ │ │ │ ├── LoggingCommandFunctions.ps1 │ │ │ │ ├── LongPathFunctions.ps1 │ │ │ │ ├── Minimatch.dll │ │ │ │ ├── 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.dll │ │ │ │ ├── VstsTaskSdk.psd1 │ │ │ │ ├── VstsTaskSdk.psm1 │ │ │ │ └── lib.json │ │ └── task.json │ ├── DeploySsisProjectTask │ │ └── Standalone SQL Server Integration Services (SSIS) DevOps Tools - SQL Server Integration Services (SSIS) - Microsoft Docs.url │ ├── DropSsisFolderTask │ │ ├── DropSsisFolder.sql │ │ ├── DropSsisFolderTask.ps1 │ │ ├── icon.png │ │ ├── ps_modules │ │ │ └── VstsTaskSdk │ │ │ │ ├── FindFunctions.ps1 │ │ │ │ ├── InputFunctions.ps1 │ │ │ │ ├── LegacyFindFunctions.ps1 │ │ │ │ ├── LocalizationFunctions.ps1 │ │ │ │ ├── LoggingCommandFunctions.ps1 │ │ │ │ ├── LongPathFunctions.ps1 │ │ │ │ ├── Minimatch.dll │ │ │ │ ├── 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.dll │ │ │ │ ├── VstsTaskSdk.psd1 │ │ │ │ ├── VstsTaskSdk.psm1 │ │ │ │ └── lib.json │ │ └── task.json │ ├── images │ │ ├── DonateNowWithPayPal.png │ │ ├── donate.png │ │ ├── drop_folder.png │ │ ├── folder.png │ │ ├── gear-hi.png │ │ ├── microsoft-ssis.png │ │ └── sql_logo.png │ ├── license.md │ ├── readme.md │ ├── test │ │ ├── CreateSsisFolderTask.Tests.ps1 │ │ └── SsisFolderIntegration.Tests.ps1 │ └── vss-extension.json ├── DeployTabularModel │ ├── DeployTabularModelTask │ │ ├── PublishTabularModel.ps1 │ │ ├── icon.png │ │ ├── ps_modules │ │ │ ├── DeployCube │ │ │ │ ├── DeployCube.psd1 │ │ │ │ ├── DeployCube.psm1 │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── en-US │ │ │ │ │ └── DeployCube-help.xml │ │ │ │ └── public │ │ │ │ │ ├── Find-AnalysisServicesDeploymentExeLocations.ps1 │ │ │ │ │ ├── Get-AnalysisServicesDeploymentExePath.ps1 │ │ │ │ │ ├── Get-CubeDatabaseCompatibilityLevel.ps1 │ │ │ │ │ ├── Get-ModuleByName.ps1 │ │ │ │ │ ├── Get-ServerMode.ps1 │ │ │ │ │ ├── Get-SqlAsPath.ps1 │ │ │ │ │ ├── Get-SqlConnectionString.ps1 │ │ │ │ │ ├── Get-SsasProcessingMessages.ps1 │ │ │ │ │ ├── Invoke-ExternalCommand.ps1 │ │ │ │ │ ├── Invoke-ProcessTabularCubeDatabase.ps1 │ │ │ │ │ ├── Ping-SsasDatabase.ps1 │ │ │ │ │ ├── Ping-SsasServer.ps1 │ │ │ │ │ ├── Publish-Cube.ps1 │ │ │ │ │ ├── Select-AnalysisServicesDeploymentExeVersion.ps1 │ │ │ │ │ ├── Unpublish-Cube.ps1 │ │ │ │ │ ├── Update-AnalysisServicesConfig.ps1 │ │ │ │ │ └── Update-TabularCubeDataSource.ps1 │ │ │ └── VstsTaskSdk │ │ │ │ ├── FindFunctions.ps1 │ │ │ │ ├── InputFunctions.ps1 │ │ │ │ ├── LegacyFindFunctions.ps1 │ │ │ │ ├── LocalizationFunctions.ps1 │ │ │ │ ├── LoggingCommandFunctions.ps1 │ │ │ │ ├── LongPathFunctions.ps1 │ │ │ │ ├── Minimatch.dll │ │ │ │ ├── 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.dll │ │ │ │ ├── VstsTaskSdk.psd1 │ │ │ │ ├── VstsTaskSdk.psm1 │ │ │ │ └── lib.json │ │ └── task.json │ ├── DropCubeTask │ │ ├── UnpublishTabularModel.ps1 │ │ ├── icon.png │ │ ├── ps_modules │ │ │ ├── DeployCube │ │ │ │ ├── DeployCube.psd1 │ │ │ │ ├── DeployCube.psm1 │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── en-US │ │ │ │ │ └── DeployCube-help.xml │ │ │ │ └── public │ │ │ │ │ ├── Find-AnalysisServicesDeploymentExeLocations.ps1 │ │ │ │ │ ├── Get-AnalysisServicesDeploymentExePath.ps1 │ │ │ │ │ ├── Get-CubeDatabaseCompatibilityLevel.ps1 │ │ │ │ │ ├── Get-ModuleByName.ps1 │ │ │ │ │ ├── Get-ServerMode.ps1 │ │ │ │ │ ├── Get-SqlAsPath.ps1 │ │ │ │ │ ├── Get-SqlConnectionString.ps1 │ │ │ │ │ ├── Get-SsasProcessingMessages.ps1 │ │ │ │ │ ├── Invoke-ExternalCommand.ps1 │ │ │ │ │ ├── Invoke-ProcessTabularCubeDatabase.ps1 │ │ │ │ │ ├── Ping-SsasDatabase.ps1 │ │ │ │ │ ├── Ping-SsasServer.ps1 │ │ │ │ │ ├── Publish-Cube.ps1 │ │ │ │ │ ├── Select-AnalysisServicesDeploymentExeVersion.ps1 │ │ │ │ │ ├── Unpublish-Cube.ps1 │ │ │ │ │ ├── Update-AnalysisServicesConfig.ps1 │ │ │ │ │ └── Update-TabularCubeDataSource.ps1 │ │ │ └── VstsTaskSdk │ │ │ │ ├── FindFunctions.ps1 │ │ │ │ ├── InputFunctions.ps1 │ │ │ │ ├── LegacyFindFunctions.ps1 │ │ │ │ ├── LocalizationFunctions.ps1 │ │ │ │ ├── LoggingCommandFunctions.ps1 │ │ │ │ ├── LongPathFunctions.ps1 │ │ │ │ ├── Minimatch.dll │ │ │ │ ├── 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.dll │ │ │ │ ├── VstsTaskSdk.psd1 │ │ │ │ ├── VstsTaskSdk.psm1 │ │ │ │ └── lib.json │ │ └── task.json │ ├── ProcessTabularModelTask │ │ ├── ProcessTabularModel.ps1 │ │ ├── icon.png │ │ ├── ps_modules │ │ │ ├── DeployCube │ │ │ │ ├── DeployCube.psd1 │ │ │ │ ├── DeployCube.psm1 │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── en-US │ │ │ │ │ └── DeployCube-help.xml │ │ │ │ └── public │ │ │ │ │ ├── Find-AnalysisServicesDeploymentExeLocations.ps1 │ │ │ │ │ ├── Get-AnalysisServicesDeploymentExePath.ps1 │ │ │ │ │ ├── Get-CubeDatabaseCompatibilityLevel.ps1 │ │ │ │ │ ├── Get-ModuleByName.ps1 │ │ │ │ │ ├── Get-ServerMode.ps1 │ │ │ │ │ ├── Get-SqlAsPath.ps1 │ │ │ │ │ ├── Get-SqlConnectionString.ps1 │ │ │ │ │ ├── Get-SsasProcessingMessages.ps1 │ │ │ │ │ ├── Invoke-ExternalCommand.ps1 │ │ │ │ │ ├── Invoke-ProcessTabularCubeDatabase.ps1 │ │ │ │ │ ├── Ping-SsasDatabase.ps1 │ │ │ │ │ ├── Ping-SsasServer.ps1 │ │ │ │ │ ├── Publish-Cube.ps1 │ │ │ │ │ ├── Select-AnalysisServicesDeploymentExeVersion.ps1 │ │ │ │ │ ├── Unpublish-Cube.ps1 │ │ │ │ │ ├── Update-AnalysisServicesConfig.ps1 │ │ │ │ │ └── Update-TabularCubeDataSource.ps1 │ │ │ └── VstsTaskSdk │ │ │ │ ├── FindFunctions.ps1 │ │ │ │ ├── InputFunctions.ps1 │ │ │ │ ├── LegacyFindFunctions.ps1 │ │ │ │ ├── LocalizationFunctions.ps1 │ │ │ │ ├── LoggingCommandFunctions.ps1 │ │ │ │ ├── LongPathFunctions.ps1 │ │ │ │ ├── Minimatch.dll │ │ │ │ ├── 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.dll │ │ │ │ ├── VstsTaskSdk.psd1 │ │ │ │ ├── VstsTaskSdk.psm1 │ │ │ │ └── lib.json │ │ └── task.json │ ├── UpdateTabularCubeDataSourceTask │ │ ├── UpdateTabularCubeDataSource.ps1 │ │ ├── icon.png │ │ ├── ps_modules │ │ │ ├── DeployCube │ │ │ │ ├── DeployCube.psd1 │ │ │ │ ├── DeployCube.psm1 │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── en-US │ │ │ │ │ └── DeployCube-help.xml │ │ │ │ └── public │ │ │ │ │ ├── Find-AnalysisServicesDeploymentExeLocations.ps1 │ │ │ │ │ ├── Get-AnalysisServicesDeploymentExePath.ps1 │ │ │ │ │ ├── Get-CubeDatabaseCompatibilityLevel.ps1 │ │ │ │ │ ├── Get-ModuleByName.ps1 │ │ │ │ │ ├── Get-ServerMode.ps1 │ │ │ │ │ ├── Get-SqlAsPath.ps1 │ │ │ │ │ ├── Get-SqlConnectionString.ps1 │ │ │ │ │ ├── Get-SsasProcessingMessages.ps1 │ │ │ │ │ ├── Invoke-ExternalCommand.ps1 │ │ │ │ │ ├── Invoke-ProcessTabularCubeDatabase.ps1 │ │ │ │ │ ├── Ping-SsasDatabase.ps1 │ │ │ │ │ ├── Ping-SsasServer.ps1 │ │ │ │ │ ├── Publish-Cube.ps1 │ │ │ │ │ ├── Select-AnalysisServicesDeploymentExeVersion.ps1 │ │ │ │ │ ├── Unpublish-Cube.ps1 │ │ │ │ │ ├── Update-AnalysisServicesConfig.ps1 │ │ │ │ │ └── Update-TabularCubeDataSource.ps1 │ │ │ └── VstsTaskSdk │ │ │ │ ├── FindFunctions.ps1 │ │ │ │ ├── InputFunctions.ps1 │ │ │ │ ├── LegacyFindFunctions.ps1 │ │ │ │ ├── LocalizationFunctions.ps1 │ │ │ │ ├── LoggingCommandFunctions.ps1 │ │ │ │ ├── LongPathFunctions.ps1 │ │ │ │ ├── Minimatch.dll │ │ │ │ ├── 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.dll │ │ │ │ ├── VstsTaskSdk.psd1 │ │ │ │ ├── VstsTaskSdk.psm1 │ │ │ │ └── lib.json │ │ └── task.json │ ├── images │ │ ├── DeploymentToolsForSsasTabularCubeModels.png │ │ ├── DonateNowWithPayPal.png │ │ ├── ExamplePipeline-BuildDeployDatabaseAndCube.png │ │ ├── Inputs-DeployTabularCubeDeploymentOptions.png │ │ ├── Inputs-DeployTabularCubeInputs.png │ │ ├── Inputs-DropCubeTask.png │ │ ├── Inputs-MsBuildTask.png │ │ ├── Inputs-ProcessSsasTabularCube.png │ │ ├── Inputs-PublishDacPacTask.png │ │ ├── Inputs-UpdateSsasTabularCubeDataSource.png │ │ ├── SqlServerIcon.png │ │ ├── SqlServerLogo250.png │ │ ├── SqlServerLogo300.png │ │ ├── donate.png │ │ ├── drop_ssas_cube250.png │ │ ├── microsoft-ssas-250.png │ │ ├── microsoft-ssas.png │ │ ├── process_ssas_cube250.png │ │ └── update-ssas-250.png │ ├── license.md │ ├── readme.md │ ├── test │ │ ├── DeployTabularModelIntegration.Tests.ps1 │ │ └── PublishTabularModel.Tests.ps1 │ └── vss-extension.json ├── PublishDacPac │ ├── PublishDacPacTask │ │ ├── PublishDacPacTask.ps1 │ │ ├── icon.png │ │ ├── ps_modules │ │ │ ├── PublishDacPac │ │ │ │ ├── LICENSE │ │ │ │ ├── PublishDacPac.psd1 │ │ │ │ ├── PublishDacPac.psm1 │ │ │ │ ├── README.md │ │ │ │ ├── en-US │ │ │ │ │ ├── PublishDacPac-help.xml │ │ │ │ │ └── about_PublishDacPac.help.txt │ │ │ │ └── public │ │ │ │ │ ├── Find-SqlPackageLocations.ps1 │ │ │ │ │ ├── Get-SqlDatabasePath.ps1 │ │ │ │ │ ├── Get-SqlPackagePath.ps1 │ │ │ │ │ ├── Invoke-ExternalCommand.ps1 │ │ │ │ │ ├── Ping-SqlDatabase.ps1 │ │ │ │ │ ├── Ping-SqlServer.ps1 │ │ │ │ │ ├── Publish-DacPac.ps1 │ │ │ │ │ ├── Remove-Database.ps1 │ │ │ │ │ └── Select-SqlPackageVersion.ps1 │ │ │ └── VstsTaskSdk │ │ │ │ ├── FindFunctions.ps1 │ │ │ │ ├── InputFunctions.ps1 │ │ │ │ ├── LegacyFindFunctions.ps1 │ │ │ │ ├── LocalizationFunctions.ps1 │ │ │ │ ├── LoggingCommandFunctions.ps1 │ │ │ │ ├── LongPathFunctions.ps1 │ │ │ │ ├── Minimatch.dll │ │ │ │ ├── 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.dll │ │ │ │ ├── VstsTaskSdk.psd1 │ │ │ │ ├── VstsTaskSdk.psm1 │ │ │ │ └── lib.json │ │ └── task.json │ ├── images │ │ ├── 001-DeleteEnvironmentVariable.png │ │ ├── 006_FeatureSelection.png │ │ ├── BuildPipelineSidebar.png │ │ ├── BuildWithDevEnv.png │ │ ├── BuildingSSIS-DontUseThis.png │ │ ├── DonateNowWithPayPal.png │ │ ├── ExamplePipeline01.png │ │ ├── ExamplePipeline02.png │ │ ├── ExamplePipeline02Variables.png │ │ ├── ExamplePipeline02VariablesHighlighted.png │ │ ├── ExamplePipeline03.png │ │ ├── ExamplePipeline05.png │ │ ├── ExamplePipeline10BuildReport.png │ │ ├── ExamplePipeline11SucessfulBuild.png │ │ ├── ExamplePipelineSelectPublishDacPacTask.png │ │ ├── FixUp-ProjectPropertiesMenu.png │ │ ├── FixUp-ProjectSQLCMD.png │ │ ├── FixUp-UnresolvedRef.png │ │ ├── ImportDatabase01NewProject.png │ │ ├── ImportDatabase02ImportDatabase.png │ │ ├── ImportDatabase03ImportOptions.png │ │ ├── ImportDatabase04Run.png │ │ ├── ImportDatabase05Project.png │ │ ├── MsBuildAdd.png │ │ ├── MsBuildConfig.png │ │ ├── PublishDacPac-JSON-Input.png │ │ ├── PublishDacPac-SqlCmdVariables-MultilineTextInput-Dropdown.png │ │ ├── PublishDacPac-SqlCmdVariables-MultilineTextInput.png │ │ ├── SSDTInstall.png │ │ ├── SqlServerIcon.png │ │ ├── SqlServerLogo300.png │ │ ├── TaskDetail.png │ │ ├── TaskDetailAdvanced.png │ │ ├── TaskDetailAdvancedWithDropDown.png │ │ ├── TaskDetailSqlPackageVersion.png │ │ ├── VisualStudio-DacPublishProfile-CI.png │ │ ├── VisualStudio-DacPublishProfile-Upgrade.png │ │ ├── VisualStudio-Publish.png │ │ ├── VisualStudio-Publish010-OpenDACPP.png │ │ ├── VisualStudio-Publish02.png │ │ ├── VisualStudio-Publish03.png │ │ ├── VisualStudio-Publish04.png │ │ ├── VisualStudio-Publish05-CreateProfile.png │ │ ├── VisualStudio-Publish06-AlwaysDeploy.png │ │ ├── VisualStudio-Publish07-Renamed.png │ │ ├── VisualStudio-Publish08-Upgrade.png │ │ ├── VisualStudio-Publish090-DropObjects.png │ │ ├── VisualStudio01SampleDatabaseProject.png │ │ ├── VisualStudio01SampleDatabaseProjectHighlighted.png │ │ ├── VisualStudio02PublishDialogSaveProfile.png │ │ ├── VisualStudio03TypicalCiSettings.png │ │ ├── deploy.png │ │ ├── donate.png │ │ ├── publishDacpacJSON-Input.png │ │ └── ssas-integrated-workspace-mode.png │ ├── license.md │ ├── readme.md │ ├── test │ │ ├── PublishDacPacTask.Tests.ps1 │ │ ├── SetEnvironmentVariables.ps1 │ │ ├── TestInput.json │ │ ├── TestInput.txt │ │ └── TestTextFormat.ps1 │ └── vss-extension.json ├── RunSqlCmdScripts │ ├── RunSqlCmdScriptTask │ │ ├── RunSqlCmdScript.ps1 │ │ ├── icon.png │ │ ├── ps_modules │ │ │ └── VstsTaskSdk │ │ │ │ ├── FindFunctions.ps1 │ │ │ │ ├── InputFunctions.ps1 │ │ │ │ ├── LegacyFindFunctions.ps1 │ │ │ │ ├── LocalizationFunctions.ps1 │ │ │ │ ├── LoggingCommandFunctions.ps1 │ │ │ │ ├── LongPathFunctions.ps1 │ │ │ │ ├── Minimatch.dll │ │ │ │ ├── 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.dll │ │ │ │ ├── VstsTaskSdk.psd1 │ │ │ │ ├── VstsTaskSdk.psm1 │ │ │ │ └── lib.json │ │ └── task.json │ ├── RunSqlCmdScriptsInFolderTask │ │ ├── RunSqlCmdScriptsInFolder.ps1 │ │ ├── icon.png │ │ ├── ps_modules │ │ │ └── VstsTaskSdk │ │ │ │ ├── FindFunctions.ps1 │ │ │ │ ├── InputFunctions.ps1 │ │ │ │ ├── LegacyFindFunctions.ps1 │ │ │ │ ├── LocalizationFunctions.ps1 │ │ │ │ ├── LoggingCommandFunctions.ps1 │ │ │ │ ├── LongPathFunctions.ps1 │ │ │ │ ├── Minimatch.dll │ │ │ │ ├── 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.dll │ │ │ │ ├── VstsTaskSdk.psd1 │ │ │ │ ├── VstsTaskSdk.psm1 │ │ │ │ └── lib.json │ │ └── task.json │ ├── images │ │ ├── ConfigureRunMultipleSqlCmdScriptsInFolder.png │ │ ├── ConfigureRunSingleSqlCmdScript.png │ │ ├── DonateNowWithPayPal.png │ │ ├── ExamplePipeLine.png │ │ ├── RunSqlCmdScreenShot.png │ │ ├── donate.png │ │ ├── multi_sql_script.png │ │ ├── script.png │ │ └── sql_script.png │ ├── license.md │ ├── readme.md │ ├── test │ │ ├── RunSqlCmdScriptTask.Tests.ps1 │ │ └── RunSqlCmdScriptsInFolderTask.Tests.ps1 │ └── vss-extension.json ├── VsixPackageDeployTabularModel.ps1 ├── VsixPackagePublishDacPac.ps1 ├── VsixPackageRunSqlCmdScripts.ps1 └── package-lock.json ├── images ├── DonateNowWithPayPal.png ├── VisualStudioMarketplace-SSIS-Extensions.png └── donate.png └── tests └── README.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/README.md -------------------------------------------------------------------------------- /examples/CubeAtCompatibility1200/CubeAtCompatibility1200.smproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/CubeAtCompatibility1200/CubeAtCompatibility1200.smproj -------------------------------------------------------------------------------- /examples/CubeAtCompatibility1200/Model.bim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/CubeAtCompatibility1200/Model.bim -------------------------------------------------------------------------------- /examples/CubeAtCompatibility1500/CubeAtCompatibility1500.smproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/CubeAtCompatibility1500/CubeAtCompatibility1500.smproj -------------------------------------------------------------------------------- /examples/CubeAtCompatibility1500/Model.bim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/CubeAtCompatibility1500/Model.bim -------------------------------------------------------------------------------- /examples/CubeAtCompatibility1600/CubeAtCompatibility1600.smproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/CubeAtCompatibility1600/CubeAtCompatibility1600.smproj -------------------------------------------------------------------------------- /examples/CubeAtCompatibility1600/Model.bim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/CubeAtCompatibility1600/Model.bim -------------------------------------------------------------------------------- /examples/DatabaseToPublish/DatabaseToPublish.CI.publish.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/DatabaseToPublish/DatabaseToPublish.CI.publish.xml -------------------------------------------------------------------------------- /examples/DatabaseToPublish/DatabaseToPublish.LOCAL.publish.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/DatabaseToPublish/DatabaseToPublish.LOCAL.publish.xml -------------------------------------------------------------------------------- /examples/DatabaseToPublish/DatabaseToPublish.NoVars.publish.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/DatabaseToPublish/DatabaseToPublish.NoVars.publish.xml -------------------------------------------------------------------------------- /examples/DatabaseToPublish/DatabaseToPublish.Upgrade.publish.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/DatabaseToPublish/DatabaseToPublish.Upgrade.publish.xml -------------------------------------------------------------------------------- /examples/DatabaseToPublish/DatabaseToPublish.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/DatabaseToPublish/DatabaseToPublish.sln -------------------------------------------------------------------------------- /examples/DatabaseToPublish/DatabaseToPublish.sqlproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/DatabaseToPublish/DatabaseToPublish.sqlproj -------------------------------------------------------------------------------- /examples/DatabaseToPublish/Scripts/Post-Deploy/PostDeploy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/DatabaseToPublish/Scripts/Post-Deploy/PostDeploy.sql -------------------------------------------------------------------------------- /examples/DatabaseToPublish/dbo/Tables/MyOnlyTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/DatabaseToPublish/dbo/Tables/MyOnlyTable.sql -------------------------------------------------------------------------------- /examples/DatabaseToPublish/dbo/Tables/MyOtherTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/DatabaseToPublish/dbo/Tables/MyOtherTable.sql -------------------------------------------------------------------------------- /examples/DatabaseToPublish/dbo/Tables/MyTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/DatabaseToPublish/dbo/Tables/MyTable.sql -------------------------------------------------------------------------------- /examples/DatabaseToPublishToAzureSqlDB/DatabaseToPublishToAzure.Upgrade.publish.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/DatabaseToPublishToAzureSqlDB/DatabaseToPublishToAzure.Upgrade.publish.xml -------------------------------------------------------------------------------- /examples/DatabaseToPublishToAzureSqlDB/DatabaseToPublishToAzureSqlDB.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/DatabaseToPublishToAzureSqlDB/DatabaseToPublishToAzureSqlDB.sln -------------------------------------------------------------------------------- /examples/DatabaseToPublishToAzureSqlDB/DatabaseToPublishToAzureSqlDB.sqlproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/DatabaseToPublishToAzureSqlDB/DatabaseToPublishToAzureSqlDB.sqlproj -------------------------------------------------------------------------------- /examples/DatabaseToPublishToAzureSqlDB/Scripts/Post-Deploy/PostDeploy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/DatabaseToPublishToAzureSqlDB/Scripts/Post-Deploy/PostDeploy.sql -------------------------------------------------------------------------------- /examples/DatabaseToPublishToAzureSqlDB/dbo/Tables/MyOnlyTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/DatabaseToPublishToAzureSqlDB/dbo/Tables/MyOnlyTable.sql -------------------------------------------------------------------------------- /examples/DatabaseToPublishToAzureSqlDB/dbo/Tables/MyOtherTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/DatabaseToPublishToAzureSqlDB/dbo/Tables/MyOtherTable.sql -------------------------------------------------------------------------------- /examples/DatabaseToPublishToAzureSqlDB/dbo/Tables/MyTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/DatabaseToPublishToAzureSqlDB/dbo/Tables/MyTable.sql -------------------------------------------------------------------------------- /examples/ForTests/CustomSqlPackageInstallLocation/SqlPackage.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/ForTests/CustomSqlPackageInstallLocation/SqlPackage.exe -------------------------------------------------------------------------------- /examples/ForTests/DeploymentWizard/Microsoft.AnalysisServices.Deployment.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/ForTests/DeploymentWizard/Microsoft.AnalysisServices.Deployment.exe -------------------------------------------------------------------------------- /examples/ForTests/InvalidDataSourceConnection/Model.asdatabase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/ForTests/InvalidDataSourceConnection/Model.asdatabase -------------------------------------------------------------------------------- /examples/ForTests/InvalidDataSourceConnection/Model.deploymentoptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/ForTests/InvalidDataSourceConnection/Model.deploymentoptions -------------------------------------------------------------------------------- /examples/ForTests/InvalidDataSourceConnection/Model.deploymenttargets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/ForTests/InvalidDataSourceConnection/Model.deploymenttargets -------------------------------------------------------------------------------- /examples/ForTests/MissingDeploymentOptions/Model.asdatabase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/ForTests/MissingDeploymentOptions/Model.asdatabase -------------------------------------------------------------------------------- /examples/ForTests/MissingDeploymentOptions/Model.deploymenttargets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/ForTests/MissingDeploymentOptions/Model.deploymenttargets -------------------------------------------------------------------------------- /examples/ForTests/MissingDeploymentTargets/Model.asdatabase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/ForTests/MissingDeploymentTargets/Model.asdatabase -------------------------------------------------------------------------------- /examples/ForTests/MissingDeploymentTargets/Model.deploymentoptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/ForTests/MissingDeploymentTargets/Model.deploymentoptions -------------------------------------------------------------------------------- /examples/PopulateMyOnlyTable.sqlgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/PopulateMyOnlyTable.sqlgen -------------------------------------------------------------------------------- /examples/SolutionToPublish.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/SolutionToPublish.sln -------------------------------------------------------------------------------- /examples/SqlCmdScripts/MultipleScripts/001_InsertIntoTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/SqlCmdScripts/MultipleScripts/001_InsertIntoTable.sql -------------------------------------------------------------------------------- /examples/SqlCmdScripts/MultipleScripts/005_InsertIntoTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/SqlCmdScripts/MultipleScripts/005_InsertIntoTable.sql -------------------------------------------------------------------------------- /examples/SqlCmdScripts/MultipleScripts/010_InsertIntoTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/SqlCmdScripts/MultipleScripts/010_InsertIntoTable.sql -------------------------------------------------------------------------------- /examples/SqlCmdScripts/MultipleScripts/SqlCmdVariables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/SqlCmdScripts/MultipleScripts/SqlCmdVariables.json -------------------------------------------------------------------------------- /examples/SqlCmdScripts/PlainScripts/001_InsertIntoTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/SqlCmdScripts/PlainScripts/001_InsertIntoTable.sql -------------------------------------------------------------------------------- /examples/SqlCmdScripts/PlainScripts/005_InsertIntoTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/SqlCmdScripts/PlainScripts/005_InsertIntoTable.sql -------------------------------------------------------------------------------- /examples/SqlCmdScripts/PlainScripts/010_InsertIntoTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/SqlCmdScripts/PlainScripts/010_InsertIntoTable.sql -------------------------------------------------------------------------------- /examples/SqlCmdScripts/QueryTable.sql: -------------------------------------------------------------------------------- 1 | select * FROM dbo.MyOtherTable 2 | -------------------------------------------------------------------------------- /examples/SqlCmdScripts/SingleScripts/InsertIntoMyOtherTableSqlCmd1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/SqlCmdScripts/SingleScripts/InsertIntoMyOtherTableSqlCmd1.sql -------------------------------------------------------------------------------- /examples/SqlCmdScripts/SingleScripts/InsertIntoMyOtherTableSqlCmd2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/SqlCmdScripts/SingleScripts/InsertIntoMyOtherTableSqlCmd2.sql -------------------------------------------------------------------------------- /examples/SqlCmdScripts/SingleScripts/InsertIntoMyOtherTableSqlCmd3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/examples/SqlCmdScripts/SingleScripts/InsertIntoMyOtherTableSqlCmd3.sql -------------------------------------------------------------------------------- /extensions/CopyExamplesToPsModules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/CopyExamplesToPsModules.ps1 -------------------------------------------------------------------------------- /extensions/CopyPsModules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/CopyPsModules.ps1 -------------------------------------------------------------------------------- /extensions/CopyVstsTaskSdk.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/CopyVstsTaskSdk.ps1 -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/PublishDacPacTask.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/PublishDacPacTask.ps1 -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/icon.png -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/PublishDacPac/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/PublishDacPac/LICENSE -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/PublishDacPac/PublishDacPac.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/PublishDacPac/PublishDacPac.psd1 -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/PublishDacPac/PublishDacPac.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/PublishDacPac/PublishDacPac.psm1 -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/PublishDacPac/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/PublishDacPac/README.md -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/PublishDacPac/en-US/PublishDacPac-help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/PublishDacPac/en-US/PublishDacPac-help.xml -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/PublishDacPac/en-US/about_PublishDacPac.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/PublishDacPac/en-US/about_PublishDacPac.help.txt -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/PublishDacPac/public/Find-SqlPackageLocations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/PublishDacPac/public/Find-SqlPackageLocations.ps1 -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/PublishDacPac/public/Get-SqlDatabasePath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/PublishDacPac/public/Get-SqlDatabasePath.ps1 -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/PublishDacPac/public/Get-SqlPackagePath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/PublishDacPac/public/Get-SqlPackagePath.ps1 -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/PublishDacPac/public/Invoke-ExternalCommand.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/PublishDacPac/public/Invoke-ExternalCommand.ps1 -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/PublishDacPac/public/Ping-SqlDatabase.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/PublishDacPac/public/Ping-SqlDatabase.ps1 -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/PublishDacPac/public/Ping-SqlServer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/PublishDacPac/public/Ping-SqlServer.ps1 -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/PublishDacPac/public/Publish-DacPac.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/PublishDacPac/public/Publish-DacPac.ps1 -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/PublishDacPac/public/Remove-Database.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/PublishDacPac/public/Remove-Database.ps1 -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/PublishDacPac/public/Select-SqlPackageVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/PublishDacPac/public/Select-SqlPackageVersion.ps1 -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/FindFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/FindFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/InputFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/InputFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/LegacyFindFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/LegacyFindFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/LocalizationFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/LocalizationFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/LoggingCommandFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/LoggingCommandFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/LongPathFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/LongPathFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/Minimatch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/Minimatch.dll -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/OutFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/OutFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/PSGetModuleInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/PSGetModuleInfo.xml -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/ServerOMFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/ServerOMFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/it-IT/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/it-IT/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ko-KR/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ko-KR/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ru-RU/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ru-RU/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-CN/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-CN/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-TW/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-TW/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/ToolFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/ToolFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/TraceFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/TraceFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/VstsTaskSdk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/VstsTaskSdk.dll -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psd1 -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psm1 -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/ps_modules/VstsTaskSdk/lib.json -------------------------------------------------------------------------------- /extensions/DeployDatabase/DeployDatabaseTask/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/DeployDatabaseTask/task.json -------------------------------------------------------------------------------- /extensions/DeployDatabase/images/BuildPipelineSidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/images/BuildPipelineSidebar.png -------------------------------------------------------------------------------- /extensions/DeployDatabase/images/DacPublishProfile-CI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/images/DacPublishProfile-CI.png -------------------------------------------------------------------------------- /extensions/DeployDatabase/images/DonateNowWithPayPal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/images/DonateNowWithPayPal.png -------------------------------------------------------------------------------- /extensions/DeployDatabase/images/ExamplePipeline01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/images/ExamplePipeline01.png -------------------------------------------------------------------------------- /extensions/DeployDatabase/images/ExamplePipeline02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/images/ExamplePipeline02.png -------------------------------------------------------------------------------- /extensions/DeployDatabase/images/ExamplePipeline02Variables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/images/ExamplePipeline02Variables.png -------------------------------------------------------------------------------- /extensions/DeployDatabase/images/ExamplePipeline02VariablesHighlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/images/ExamplePipeline02VariablesHighlighted.png -------------------------------------------------------------------------------- /extensions/DeployDatabase/images/ExamplePipeline03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/images/ExamplePipeline03.png -------------------------------------------------------------------------------- /extensions/DeployDatabase/images/ExamplePipeline05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/images/ExamplePipeline05.png -------------------------------------------------------------------------------- /extensions/DeployDatabase/images/ExamplePipeline10BuildReport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/images/ExamplePipeline10BuildReport.png -------------------------------------------------------------------------------- /extensions/DeployDatabase/images/ExamplePipeline11SucessfulBuild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/images/ExamplePipeline11SucessfulBuild.png -------------------------------------------------------------------------------- /extensions/DeployDatabase/images/ExamplePipelineSelectPublishDacPacTask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/images/ExamplePipelineSelectPublishDacPacTask.png -------------------------------------------------------------------------------- /extensions/DeployDatabase/images/PublishDacPac-JSON-Input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/images/PublishDacPac-JSON-Input.png -------------------------------------------------------------------------------- /extensions/DeployDatabase/images/PublishDacPac-SqlCmdVariables-MultilineTextInput-Dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/images/PublishDacPac-SqlCmdVariables-MultilineTextInput-Dropdown.png -------------------------------------------------------------------------------- /extensions/DeployDatabase/images/PublishDacPac-SqlCmdVariables-MultilineTextInput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/images/PublishDacPac-SqlCmdVariables-MultilineTextInput.png -------------------------------------------------------------------------------- /extensions/DeployDatabase/images/SqlServerIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/images/SqlServerIcon.png -------------------------------------------------------------------------------- /extensions/DeployDatabase/images/SqlServerLogo300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/images/SqlServerLogo300.png -------------------------------------------------------------------------------- /extensions/DeployDatabase/images/TaskDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/images/TaskDetail.png -------------------------------------------------------------------------------- /extensions/DeployDatabase/images/TaskDetailAdvanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/images/TaskDetailAdvanced.png -------------------------------------------------------------------------------- /extensions/DeployDatabase/images/TaskDetailAdvancedWithDropDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/images/TaskDetailAdvancedWithDropDown.png -------------------------------------------------------------------------------- /extensions/DeployDatabase/images/TaskDetailSqlPackageVersion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/images/TaskDetailSqlPackageVersion.png -------------------------------------------------------------------------------- /extensions/DeployDatabase/images/VisualStudio01SampleDatabaseProject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/images/VisualStudio01SampleDatabaseProject.png -------------------------------------------------------------------------------- /extensions/DeployDatabase/images/VisualStudio01SampleDatabaseProjectHighlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/images/VisualStudio01SampleDatabaseProjectHighlighted.png -------------------------------------------------------------------------------- /extensions/DeployDatabase/images/VisualStudio02PublishDialogSaveProfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/images/VisualStudio02PublishDialogSaveProfile.png -------------------------------------------------------------------------------- /extensions/DeployDatabase/images/VisualStudio03TypicalCiSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/images/VisualStudio03TypicalCiSettings.png -------------------------------------------------------------------------------- /extensions/DeployDatabase/images/VisualStudioPublishDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/images/VisualStudioPublishDialog.png -------------------------------------------------------------------------------- /extensions/DeployDatabase/images/deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/images/deploy.png -------------------------------------------------------------------------------- /extensions/DeployDatabase/images/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/images/donate.png -------------------------------------------------------------------------------- /extensions/DeployDatabase/images/publishDacpacJSON-Input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/images/publishDacpacJSON-Input.png -------------------------------------------------------------------------------- /extensions/DeployDatabase/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/license.md -------------------------------------------------------------------------------- /extensions/DeployDatabase/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/readme.md -------------------------------------------------------------------------------- /extensions/DeployDatabase/vss-extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployDatabase/vss-extension.json -------------------------------------------------------------------------------- /extensions/DeploySsisProject/BuildSsisProjectTask/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/BuildSsisProjectTask/task.json -------------------------------------------------------------------------------- /extensions/DeploySsisProject/CreateSsisFolderTask/CreateSsisFolder.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/CreateSsisFolderTask/CreateSsisFolder.sql -------------------------------------------------------------------------------- /extensions/DeploySsisProject/CreateSsisFolderTask/CreateSsisFolderTask.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/CreateSsisFolderTask/CreateSsisFolderTask.ps1 -------------------------------------------------------------------------------- /extensions/DeploySsisProject/CreateSsisFolderTask/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/CreateSsisFolderTask/icon.png -------------------------------------------------------------------------------- /extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/FindFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/FindFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/InputFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/InputFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/LegacyFindFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/LegacyFindFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/LocalizationFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/LocalizationFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/LoggingCommandFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/LoggingCommandFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/LongPathFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/LongPathFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/Minimatch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/Minimatch.dll -------------------------------------------------------------------------------- /extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/OutFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/OutFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/PSGetModuleInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/PSGetModuleInfo.xml -------------------------------------------------------------------------------- /extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/ServerOMFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/ServerOMFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson -------------------------------------------------------------------------------- /extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson -------------------------------------------------------------------------------- /extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson -------------------------------------------------------------------------------- /extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson -------------------------------------------------------------------------------- /extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/it-IT/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/it-IT/resources.resjson -------------------------------------------------------------------------------- /extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson -------------------------------------------------------------------------------- /extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ko-KR/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ko-KR/resources.resjson -------------------------------------------------------------------------------- /extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ru-RU/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ru-RU/resources.resjson -------------------------------------------------------------------------------- /extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-CN/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-CN/resources.resjson -------------------------------------------------------------------------------- /extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-TW/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-TW/resources.resjson -------------------------------------------------------------------------------- /extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/ToolFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/ToolFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/TraceFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/TraceFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/VstsTaskSdk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/VstsTaskSdk.dll -------------------------------------------------------------------------------- /extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psd1 -------------------------------------------------------------------------------- /extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psm1 -------------------------------------------------------------------------------- /extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/CreateSsisFolderTask/ps_modules/VstsTaskSdk/lib.json -------------------------------------------------------------------------------- /extensions/DeploySsisProject/CreateSsisFolderTask/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/CreateSsisFolderTask/task.json -------------------------------------------------------------------------------- /extensions/DeploySsisProject/DropSsisFolderTask/DropSsisFolder.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/DropSsisFolderTask/DropSsisFolder.sql -------------------------------------------------------------------------------- /extensions/DeploySsisProject/DropSsisFolderTask/DropSsisFolderTask.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/DropSsisFolderTask/DropSsisFolderTask.ps1 -------------------------------------------------------------------------------- /extensions/DeploySsisProject/DropSsisFolderTask/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/DropSsisFolderTask/icon.png -------------------------------------------------------------------------------- /extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/FindFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/FindFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/InputFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/InputFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/LegacyFindFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/LegacyFindFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/LocalizationFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/LocalizationFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/LoggingCommandFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/LoggingCommandFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/LongPathFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/LongPathFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/Minimatch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/Minimatch.dll -------------------------------------------------------------------------------- /extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/OutFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/OutFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/PSGetModuleInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/PSGetModuleInfo.xml -------------------------------------------------------------------------------- /extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/ServerOMFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/ServerOMFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson -------------------------------------------------------------------------------- /extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson -------------------------------------------------------------------------------- /extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson -------------------------------------------------------------------------------- /extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson -------------------------------------------------------------------------------- /extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/it-IT/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/it-IT/resources.resjson -------------------------------------------------------------------------------- /extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson -------------------------------------------------------------------------------- /extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ko-KR/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ko-KR/resources.resjson -------------------------------------------------------------------------------- /extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ru-RU/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ru-RU/resources.resjson -------------------------------------------------------------------------------- /extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-CN/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-CN/resources.resjson -------------------------------------------------------------------------------- /extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-TW/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-TW/resources.resjson -------------------------------------------------------------------------------- /extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/ToolFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/ToolFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/TraceFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/TraceFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/VstsTaskSdk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/VstsTaskSdk.dll -------------------------------------------------------------------------------- /extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psd1 -------------------------------------------------------------------------------- /extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psm1 -------------------------------------------------------------------------------- /extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/DropSsisFolderTask/ps_modules/VstsTaskSdk/lib.json -------------------------------------------------------------------------------- /extensions/DeploySsisProject/DropSsisFolderTask/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/DropSsisFolderTask/task.json -------------------------------------------------------------------------------- /extensions/DeploySsisProject/images/DonateNowWithPayPal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/images/DonateNowWithPayPal.png -------------------------------------------------------------------------------- /extensions/DeploySsisProject/images/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/images/donate.png -------------------------------------------------------------------------------- /extensions/DeploySsisProject/images/drop_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/images/drop_folder.png -------------------------------------------------------------------------------- /extensions/DeploySsisProject/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/images/folder.png -------------------------------------------------------------------------------- /extensions/DeploySsisProject/images/gear-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/images/gear-hi.png -------------------------------------------------------------------------------- /extensions/DeploySsisProject/images/microsoft-ssis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/images/microsoft-ssis.png -------------------------------------------------------------------------------- /extensions/DeploySsisProject/images/sql_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/images/sql_logo.png -------------------------------------------------------------------------------- /extensions/DeploySsisProject/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/license.md -------------------------------------------------------------------------------- /extensions/DeploySsisProject/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/readme.md -------------------------------------------------------------------------------- /extensions/DeploySsisProject/test/CreateSsisFolderTask.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/test/CreateSsisFolderTask.Tests.ps1 -------------------------------------------------------------------------------- /extensions/DeploySsisProject/test/SsisFolderIntegration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/test/SsisFolderIntegration.Tests.ps1 -------------------------------------------------------------------------------- /extensions/DeploySsisProject/vss-extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeploySsisProject/vss-extension.json -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/PublishTabularModel.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/PublishTabularModel.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/icon.png -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/DeployCube.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/DeployCube.psd1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/DeployCube.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/DeployCube.psm1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/LICENSE -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/README.md -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/en-US/DeployCube-help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/en-US/DeployCube-help.xml -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/public/Find-AnalysisServicesDeploymentExeLocations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/public/Find-AnalysisServicesDeploymentExeLocations.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/public/Get-AnalysisServicesDeploymentExePath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/public/Get-AnalysisServicesDeploymentExePath.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/public/Get-CubeDatabaseCompatibilityLevel.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/public/Get-CubeDatabaseCompatibilityLevel.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/public/Get-ModuleByName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/public/Get-ModuleByName.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/public/Get-ServerMode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/public/Get-ServerMode.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/public/Get-SqlAsPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/public/Get-SqlAsPath.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/public/Get-SqlConnectionString.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/public/Get-SqlConnectionString.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/public/Get-SsasProcessingMessages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/public/Get-SsasProcessingMessages.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/public/Invoke-ExternalCommand.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/public/Invoke-ExternalCommand.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/public/Invoke-ProcessTabularCubeDatabase.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/public/Invoke-ProcessTabularCubeDatabase.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/public/Ping-SsasDatabase.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/public/Ping-SsasDatabase.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/public/Ping-SsasServer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/public/Ping-SsasServer.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/public/Publish-Cube.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/public/Publish-Cube.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/public/Select-AnalysisServicesDeploymentExeVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/public/Select-AnalysisServicesDeploymentExeVersion.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/public/Unpublish-Cube.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/public/Unpublish-Cube.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/public/Update-AnalysisServicesConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/public/Update-AnalysisServicesConfig.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/public/Update-TabularCubeDataSource.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/DeployCube/public/Update-TabularCubeDataSource.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/FindFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/FindFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/InputFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/InputFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/LegacyFindFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/LegacyFindFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/LocalizationFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/LocalizationFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/LoggingCommandFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/LoggingCommandFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/LongPathFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/LongPathFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/Minimatch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/Minimatch.dll -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/OutFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/OutFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/PSGetModuleInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/PSGetModuleInfo.xml -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/ServerOMFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/ServerOMFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/it-IT/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/it-IT/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ko-KR/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ko-KR/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ru-RU/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ru-RU/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-CN/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-CN/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-TW/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-TW/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/ToolFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/ToolFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/TraceFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/TraceFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/VstsTaskSdk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/VstsTaskSdk.dll -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psd1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psm1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/ps_modules/VstsTaskSdk/lib.json -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DeployTabularModelTask/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DeployTabularModelTask/task.json -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/UnpublishTabularModel.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/UnpublishTabularModel.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/icon.png -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/DeployCube.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/DeployCube.psd1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/DeployCube.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/DeployCube.psm1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/LICENSE -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/README.md -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/en-US/DeployCube-help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/en-US/DeployCube-help.xml -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/public/Find-AnalysisServicesDeploymentExeLocations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/public/Find-AnalysisServicesDeploymentExeLocations.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/public/Get-AnalysisServicesDeploymentExePath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/public/Get-AnalysisServicesDeploymentExePath.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/public/Get-CubeDatabaseCompatibilityLevel.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/public/Get-CubeDatabaseCompatibilityLevel.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/public/Get-ModuleByName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/public/Get-ModuleByName.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/public/Get-ServerMode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/public/Get-ServerMode.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/public/Get-SqlAsPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/public/Get-SqlAsPath.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/public/Get-SqlConnectionString.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/public/Get-SqlConnectionString.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/public/Get-SsasProcessingMessages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/public/Get-SsasProcessingMessages.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/public/Invoke-ExternalCommand.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/public/Invoke-ExternalCommand.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/public/Invoke-ProcessTabularCubeDatabase.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/public/Invoke-ProcessTabularCubeDatabase.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/public/Ping-SsasDatabase.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/public/Ping-SsasDatabase.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/public/Ping-SsasServer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/public/Ping-SsasServer.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/public/Publish-Cube.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/public/Publish-Cube.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/public/Select-AnalysisServicesDeploymentExeVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/public/Select-AnalysisServicesDeploymentExeVersion.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/public/Unpublish-Cube.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/public/Unpublish-Cube.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/public/Update-AnalysisServicesConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/public/Update-AnalysisServicesConfig.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/public/Update-TabularCubeDataSource.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/DeployCube/public/Update-TabularCubeDataSource.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/FindFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/FindFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/InputFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/InputFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/LegacyFindFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/LegacyFindFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/LocalizationFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/LocalizationFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/LoggingCommandFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/LoggingCommandFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/LongPathFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/LongPathFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/Minimatch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/Minimatch.dll -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/OutFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/OutFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/PSGetModuleInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/PSGetModuleInfo.xml -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/ServerOMFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/ServerOMFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/it-IT/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/it-IT/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ko-KR/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ko-KR/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ru-RU/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ru-RU/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-CN/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-CN/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-TW/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-TW/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/ToolFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/ToolFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/TraceFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/TraceFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/VstsTaskSdk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/VstsTaskSdk.dll -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psd1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psm1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/ps_modules/VstsTaskSdk/lib.json -------------------------------------------------------------------------------- /extensions/DeployTabularModel/DropCubeTask/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/DropCubeTask/task.json -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ProcessTabularModel.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ProcessTabularModel.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/icon.png -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/DeployCube.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/DeployCube.psd1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/DeployCube.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/DeployCube.psm1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/LICENSE -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/README.md -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/en-US/DeployCube-help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/en-US/DeployCube-help.xml -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/public/Find-AnalysisServicesDeploymentExeLocations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/public/Find-AnalysisServicesDeploymentExeLocations.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/public/Get-AnalysisServicesDeploymentExePath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/public/Get-AnalysisServicesDeploymentExePath.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/public/Get-CubeDatabaseCompatibilityLevel.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/public/Get-CubeDatabaseCompatibilityLevel.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/public/Get-ModuleByName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/public/Get-ModuleByName.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/public/Get-ServerMode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/public/Get-ServerMode.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/public/Get-SqlAsPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/public/Get-SqlAsPath.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/public/Get-SqlConnectionString.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/public/Get-SqlConnectionString.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/public/Get-SsasProcessingMessages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/public/Get-SsasProcessingMessages.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/public/Invoke-ExternalCommand.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/public/Invoke-ExternalCommand.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/public/Invoke-ProcessTabularCubeDatabase.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/public/Invoke-ProcessTabularCubeDatabase.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/public/Ping-SsasDatabase.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/public/Ping-SsasDatabase.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/public/Ping-SsasServer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/public/Ping-SsasServer.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/public/Publish-Cube.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/public/Publish-Cube.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/public/Select-AnalysisServicesDeploymentExeVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/public/Select-AnalysisServicesDeploymentExeVersion.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/public/Unpublish-Cube.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/public/Unpublish-Cube.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/public/Update-AnalysisServicesConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/public/Update-AnalysisServicesConfig.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/public/Update-TabularCubeDataSource.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/DeployCube/public/Update-TabularCubeDataSource.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/FindFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/FindFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/InputFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/InputFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/LegacyFindFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/LegacyFindFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/LocalizationFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/LocalizationFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/LoggingCommandFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/LoggingCommandFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/LongPathFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/LongPathFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/Minimatch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/Minimatch.dll -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/OutFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/OutFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/PSGetModuleInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/PSGetModuleInfo.xml -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/ServerOMFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/ServerOMFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/it-IT/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/it-IT/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ko-KR/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ko-KR/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ru-RU/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ru-RU/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-CN/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-CN/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-TW/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-TW/resources.resjson -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/ToolFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/ToolFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/TraceFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/TraceFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/VstsTaskSdk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/VstsTaskSdk.dll -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psd1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psm1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/ps_modules/VstsTaskSdk/lib.json -------------------------------------------------------------------------------- /extensions/DeployTabularModel/ProcessTabularModelTask/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/ProcessTabularModelTask/task.json -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/UpdateTabularCubeDataSource.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/UpdateTabularCubeDataSource.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/icon.png -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/DeployCube.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/DeployCube.psd1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/DeployCube.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/DeployCube.psm1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/LICENSE -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/README.md -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/en-US/DeployCube-help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/en-US/DeployCube-help.xml -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/public/Get-CubeDatabaseCompatibilityLevel.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/public/Get-CubeDatabaseCompatibilityLevel.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/public/Get-ModuleByName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/public/Get-ModuleByName.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/public/Get-ServerMode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/public/Get-ServerMode.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/public/Get-SqlAsPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/public/Get-SqlAsPath.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/public/Get-SqlConnectionString.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/public/Get-SqlConnectionString.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/public/Get-SsasProcessingMessages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/public/Get-SsasProcessingMessages.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/public/Invoke-ExternalCommand.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/public/Invoke-ExternalCommand.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/public/Invoke-ProcessTabularCubeDatabase.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/public/Invoke-ProcessTabularCubeDatabase.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/public/Ping-SsasDatabase.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/public/Ping-SsasDatabase.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/public/Ping-SsasServer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/public/Ping-SsasServer.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/public/Publish-Cube.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/public/Publish-Cube.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/public/Unpublish-Cube.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/public/Unpublish-Cube.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/public/Update-AnalysisServicesConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/public/Update-AnalysisServicesConfig.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/public/Update-TabularCubeDataSource.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/DeployCube/public/Update-TabularCubeDataSource.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/VstsTaskSdk/FindFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/VstsTaskSdk/FindFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/VstsTaskSdk/InputFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/VstsTaskSdk/InputFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/VstsTaskSdk/LegacyFindFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/VstsTaskSdk/LegacyFindFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/VstsTaskSdk/LocalizationFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/VstsTaskSdk/LocalizationFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/VstsTaskSdk/LoggingCommandFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/VstsTaskSdk/LoggingCommandFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/VstsTaskSdk/LongPathFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/VstsTaskSdk/LongPathFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/VstsTaskSdk/Minimatch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/VstsTaskSdk/Minimatch.dll -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/VstsTaskSdk/OutFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/VstsTaskSdk/OutFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/VstsTaskSdk/PSGetModuleInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/VstsTaskSdk/PSGetModuleInfo.xml -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/VstsTaskSdk/ServerOMFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/VstsTaskSdk/ServerOMFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/VstsTaskSdk/ToolFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/VstsTaskSdk/ToolFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/VstsTaskSdk/TraceFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/VstsTaskSdk/TraceFunctions.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/VstsTaskSdk/VstsTaskSdk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/VstsTaskSdk/VstsTaskSdk.dll -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psd1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psm1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/VstsTaskSdk/lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/ps_modules/VstsTaskSdk/lib.json -------------------------------------------------------------------------------- /extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/UpdateTabularCubeDataSourceTask/task.json -------------------------------------------------------------------------------- /extensions/DeployTabularModel/images/DeploymentToolsForSsasTabularCubeModels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/images/DeploymentToolsForSsasTabularCubeModels.png -------------------------------------------------------------------------------- /extensions/DeployTabularModel/images/DonateNowWithPayPal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/images/DonateNowWithPayPal.png -------------------------------------------------------------------------------- /extensions/DeployTabularModel/images/ExamplePipeline-BuildDeployDatabaseAndCube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/images/ExamplePipeline-BuildDeployDatabaseAndCube.png -------------------------------------------------------------------------------- /extensions/DeployTabularModel/images/Inputs-DeployTabularCubeDeploymentOptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/images/Inputs-DeployTabularCubeDeploymentOptions.png -------------------------------------------------------------------------------- /extensions/DeployTabularModel/images/Inputs-DeployTabularCubeInputs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/images/Inputs-DeployTabularCubeInputs.png -------------------------------------------------------------------------------- /extensions/DeployTabularModel/images/Inputs-DropCubeTask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/images/Inputs-DropCubeTask.png -------------------------------------------------------------------------------- /extensions/DeployTabularModel/images/Inputs-MsBuildTask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/images/Inputs-MsBuildTask.png -------------------------------------------------------------------------------- /extensions/DeployTabularModel/images/Inputs-ProcessSsasTabularCube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/images/Inputs-ProcessSsasTabularCube.png -------------------------------------------------------------------------------- /extensions/DeployTabularModel/images/Inputs-PublishDacPacTask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/images/Inputs-PublishDacPacTask.png -------------------------------------------------------------------------------- /extensions/DeployTabularModel/images/Inputs-UpdateSsasTabularCubeDataSource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/images/Inputs-UpdateSsasTabularCubeDataSource.png -------------------------------------------------------------------------------- /extensions/DeployTabularModel/images/SqlServerIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/images/SqlServerIcon.png -------------------------------------------------------------------------------- /extensions/DeployTabularModel/images/SqlServerLogo250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/images/SqlServerLogo250.png -------------------------------------------------------------------------------- /extensions/DeployTabularModel/images/SqlServerLogo300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/images/SqlServerLogo300.png -------------------------------------------------------------------------------- /extensions/DeployTabularModel/images/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/images/donate.png -------------------------------------------------------------------------------- /extensions/DeployTabularModel/images/drop_ssas_cube250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/images/drop_ssas_cube250.png -------------------------------------------------------------------------------- /extensions/DeployTabularModel/images/microsoft-ssas-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/images/microsoft-ssas-250.png -------------------------------------------------------------------------------- /extensions/DeployTabularModel/images/microsoft-ssas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/images/microsoft-ssas.png -------------------------------------------------------------------------------- /extensions/DeployTabularModel/images/process_ssas_cube250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/images/process_ssas_cube250.png -------------------------------------------------------------------------------- /extensions/DeployTabularModel/images/update-ssas-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/images/update-ssas-250.png -------------------------------------------------------------------------------- /extensions/DeployTabularModel/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/license.md -------------------------------------------------------------------------------- /extensions/DeployTabularModel/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/readme.md -------------------------------------------------------------------------------- /extensions/DeployTabularModel/test/DeployTabularModelIntegration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/test/DeployTabularModelIntegration.Tests.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/test/PublishTabularModel.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/test/PublishTabularModel.Tests.ps1 -------------------------------------------------------------------------------- /extensions/DeployTabularModel/vss-extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/DeployTabularModel/vss-extension.json -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/PublishDacPacTask.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/PublishDacPacTask.ps1 -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/icon.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/PublishDacPac/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/PublishDacPac/LICENSE -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/PublishDacPac/PublishDacPac.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/PublishDacPac/PublishDacPac.psd1 -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/PublishDacPac/PublishDacPac.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/PublishDacPac/PublishDacPac.psm1 -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/PublishDacPac/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/PublishDacPac/README.md -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/PublishDacPac/en-US/PublishDacPac-help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/PublishDacPac/en-US/PublishDacPac-help.xml -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/PublishDacPac/en-US/about_PublishDacPac.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/PublishDacPac/en-US/about_PublishDacPac.help.txt -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/PublishDacPac/public/Find-SqlPackageLocations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/PublishDacPac/public/Find-SqlPackageLocations.ps1 -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/PublishDacPac/public/Get-SqlDatabasePath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/PublishDacPac/public/Get-SqlDatabasePath.ps1 -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/PublishDacPac/public/Get-SqlPackagePath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/PublishDacPac/public/Get-SqlPackagePath.ps1 -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/PublishDacPac/public/Invoke-ExternalCommand.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/PublishDacPac/public/Invoke-ExternalCommand.ps1 -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/PublishDacPac/public/Ping-SqlDatabase.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/PublishDacPac/public/Ping-SqlDatabase.ps1 -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/PublishDacPac/public/Ping-SqlServer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/PublishDacPac/public/Ping-SqlServer.ps1 -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/PublishDacPac/public/Publish-DacPac.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/PublishDacPac/public/Publish-DacPac.ps1 -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/PublishDacPac/public/Remove-Database.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/PublishDacPac/public/Remove-Database.ps1 -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/PublishDacPac/public/Select-SqlPackageVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/PublishDacPac/public/Select-SqlPackageVersion.ps1 -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/FindFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/FindFunctions.ps1 -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/InputFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/InputFunctions.ps1 -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/LegacyFindFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/LegacyFindFunctions.ps1 -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/LocalizationFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/LocalizationFunctions.ps1 -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/LoggingCommandFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/LoggingCommandFunctions.ps1 -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/LongPathFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/LongPathFunctions.ps1 -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/Minimatch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/Minimatch.dll -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/OutFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/OutFunctions.ps1 -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/PSGetModuleInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/PSGetModuleInfo.xml -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/ServerOMFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/ServerOMFunctions.ps1 -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/it-IT/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/it-IT/resources.resjson -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ko-KR/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ko-KR/resources.resjson -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ru-RU/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ru-RU/resources.resjson -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-CN/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-CN/resources.resjson -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-TW/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-TW/resources.resjson -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/ToolFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/ToolFunctions.ps1 -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/TraceFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/TraceFunctions.ps1 -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/VstsTaskSdk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/VstsTaskSdk.dll -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psd1 -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psm1 -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/ps_modules/VstsTaskSdk/lib.json -------------------------------------------------------------------------------- /extensions/PublishDacPac/PublishDacPacTask/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/PublishDacPacTask/task.json -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/001-DeleteEnvironmentVariable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/001-DeleteEnvironmentVariable.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/006_FeatureSelection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/006_FeatureSelection.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/BuildPipelineSidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/BuildPipelineSidebar.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/BuildWithDevEnv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/BuildWithDevEnv.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/BuildingSSIS-DontUseThis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/BuildingSSIS-DontUseThis.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/DonateNowWithPayPal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/DonateNowWithPayPal.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/ExamplePipeline01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/ExamplePipeline01.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/ExamplePipeline02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/ExamplePipeline02.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/ExamplePipeline02Variables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/ExamplePipeline02Variables.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/ExamplePipeline02VariablesHighlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/ExamplePipeline02VariablesHighlighted.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/ExamplePipeline03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/ExamplePipeline03.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/ExamplePipeline05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/ExamplePipeline05.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/ExamplePipeline10BuildReport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/ExamplePipeline10BuildReport.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/ExamplePipeline11SucessfulBuild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/ExamplePipeline11SucessfulBuild.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/ExamplePipelineSelectPublishDacPacTask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/ExamplePipelineSelectPublishDacPacTask.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/FixUp-ProjectPropertiesMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/FixUp-ProjectPropertiesMenu.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/FixUp-ProjectSQLCMD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/FixUp-ProjectSQLCMD.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/FixUp-UnresolvedRef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/FixUp-UnresolvedRef.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/ImportDatabase01NewProject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/ImportDatabase01NewProject.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/ImportDatabase02ImportDatabase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/ImportDatabase02ImportDatabase.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/ImportDatabase03ImportOptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/ImportDatabase03ImportOptions.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/ImportDatabase04Run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/ImportDatabase04Run.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/ImportDatabase05Project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/ImportDatabase05Project.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/MsBuildAdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/MsBuildAdd.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/MsBuildConfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/MsBuildConfig.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/PublishDacPac-JSON-Input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/PublishDacPac-JSON-Input.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/PublishDacPac-SqlCmdVariables-MultilineTextInput-Dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/PublishDacPac-SqlCmdVariables-MultilineTextInput-Dropdown.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/PublishDacPac-SqlCmdVariables-MultilineTextInput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/PublishDacPac-SqlCmdVariables-MultilineTextInput.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/SSDTInstall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/SSDTInstall.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/SqlServerIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/SqlServerIcon.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/SqlServerLogo300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/SqlServerLogo300.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/TaskDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/TaskDetail.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/TaskDetailAdvanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/TaskDetailAdvanced.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/TaskDetailAdvancedWithDropDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/TaskDetailAdvancedWithDropDown.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/TaskDetailSqlPackageVersion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/TaskDetailSqlPackageVersion.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/VisualStudio-DacPublishProfile-CI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/VisualStudio-DacPublishProfile-CI.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/VisualStudio-DacPublishProfile-Upgrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/VisualStudio-DacPublishProfile-Upgrade.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/VisualStudio-Publish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/VisualStudio-Publish.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/VisualStudio-Publish010-OpenDACPP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/VisualStudio-Publish010-OpenDACPP.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/VisualStudio-Publish02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/VisualStudio-Publish02.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/VisualStudio-Publish03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/VisualStudio-Publish03.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/VisualStudio-Publish04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/VisualStudio-Publish04.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/VisualStudio-Publish05-CreateProfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/VisualStudio-Publish05-CreateProfile.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/VisualStudio-Publish06-AlwaysDeploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/VisualStudio-Publish06-AlwaysDeploy.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/VisualStudio-Publish07-Renamed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/VisualStudio-Publish07-Renamed.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/VisualStudio-Publish08-Upgrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/VisualStudio-Publish08-Upgrade.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/VisualStudio-Publish090-DropObjects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/VisualStudio-Publish090-DropObjects.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/VisualStudio01SampleDatabaseProject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/VisualStudio01SampleDatabaseProject.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/VisualStudio01SampleDatabaseProjectHighlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/VisualStudio01SampleDatabaseProjectHighlighted.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/VisualStudio02PublishDialogSaveProfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/VisualStudio02PublishDialogSaveProfile.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/VisualStudio03TypicalCiSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/VisualStudio03TypicalCiSettings.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/deploy.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/donate.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/publishDacpacJSON-Input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/publishDacpacJSON-Input.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/images/ssas-integrated-workspace-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/images/ssas-integrated-workspace-mode.png -------------------------------------------------------------------------------- /extensions/PublishDacPac/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/license.md -------------------------------------------------------------------------------- /extensions/PublishDacPac/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/readme.md -------------------------------------------------------------------------------- /extensions/PublishDacPac/test/PublishDacPacTask.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/test/PublishDacPacTask.Tests.ps1 -------------------------------------------------------------------------------- /extensions/PublishDacPac/test/SetEnvironmentVariables.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/test/SetEnvironmentVariables.ps1 -------------------------------------------------------------------------------- /extensions/PublishDacPac/test/TestInput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/test/TestInput.json -------------------------------------------------------------------------------- /extensions/PublishDacPac/test/TestInput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/test/TestInput.txt -------------------------------------------------------------------------------- /extensions/PublishDacPac/test/TestTextFormat.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/test/TestTextFormat.ps1 -------------------------------------------------------------------------------- /extensions/PublishDacPac/vss-extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/PublishDacPac/vss-extension.json -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/RunSqlCmdScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/RunSqlCmdScript.ps1 -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/icon.png -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/FindFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/FindFunctions.ps1 -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/InputFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/InputFunctions.ps1 -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/LegacyFindFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/LegacyFindFunctions.ps1 -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/LocalizationFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/LocalizationFunctions.ps1 -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/LoggingCommandFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/LoggingCommandFunctions.ps1 -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/LongPathFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/LongPathFunctions.ps1 -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/Minimatch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/Minimatch.dll -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/OutFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/OutFunctions.ps1 -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/PSGetModuleInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/PSGetModuleInfo.xml -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/ServerOMFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/ServerOMFunctions.ps1 -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/it-IT/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/it-IT/resources.resjson -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ko-KR/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ko-KR/resources.resjson -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ru-RU/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/ru-RU/resources.resjson -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-CN/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-CN/resources.resjson -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-TW/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/zh-TW/resources.resjson -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/ToolFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/ToolFunctions.ps1 -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/TraceFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/TraceFunctions.ps1 -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/VstsTaskSdk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/VstsTaskSdk.dll -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psd1 -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psm1 -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/ps_modules/VstsTaskSdk/lib.json -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptTask/task.json -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/RunSqlCmdScriptsInFolder.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/RunSqlCmdScriptsInFolder.ps1 -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/icon.png -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/ps_modules/VstsTaskSdk/FindFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/ps_modules/VstsTaskSdk/FindFunctions.ps1 -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/ps_modules/VstsTaskSdk/InputFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/ps_modules/VstsTaskSdk/InputFunctions.ps1 -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/ps_modules/VstsTaskSdk/LegacyFindFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/ps_modules/VstsTaskSdk/LegacyFindFunctions.ps1 -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/ps_modules/VstsTaskSdk/LocalizationFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/ps_modules/VstsTaskSdk/LocalizationFunctions.ps1 -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/ps_modules/VstsTaskSdk/LoggingCommandFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/ps_modules/VstsTaskSdk/LoggingCommandFunctions.ps1 -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/ps_modules/VstsTaskSdk/LongPathFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/ps_modules/VstsTaskSdk/LongPathFunctions.ps1 -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/ps_modules/VstsTaskSdk/Minimatch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/ps_modules/VstsTaskSdk/Minimatch.dll -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/ps_modules/VstsTaskSdk/OutFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/ps_modules/VstsTaskSdk/OutFunctions.ps1 -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/ps_modules/VstsTaskSdk/PSGetModuleInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/ps_modules/VstsTaskSdk/PSGetModuleInfo.xml -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/ps_modules/VstsTaskSdk/ServerOMFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/ps_modules/VstsTaskSdk/ServerOMFunctions.ps1 -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/ps_modules/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/ps_modules/VstsTaskSdk/ToolFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/ps_modules/VstsTaskSdk/ToolFunctions.ps1 -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/ps_modules/VstsTaskSdk/TraceFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/ps_modules/VstsTaskSdk/TraceFunctions.ps1 -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/ps_modules/VstsTaskSdk/VstsTaskSdk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/ps_modules/VstsTaskSdk/VstsTaskSdk.dll -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psd1 -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/ps_modules/VstsTaskSdk/VstsTaskSdk.psm1 -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/ps_modules/VstsTaskSdk/lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/ps_modules/VstsTaskSdk/lib.json -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/RunSqlCmdScriptsInFolderTask/task.json -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/images/ConfigureRunMultipleSqlCmdScriptsInFolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/images/ConfigureRunMultipleSqlCmdScriptsInFolder.png -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/images/ConfigureRunSingleSqlCmdScript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/images/ConfigureRunSingleSqlCmdScript.png -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/images/DonateNowWithPayPal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/images/DonateNowWithPayPal.png -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/images/ExamplePipeLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/images/ExamplePipeLine.png -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/images/RunSqlCmdScreenShot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/images/RunSqlCmdScreenShot.png -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/images/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/images/donate.png -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/images/multi_sql_script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/images/multi_sql_script.png -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/images/script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/images/script.png -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/images/sql_script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/images/sql_script.png -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/license.md -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/readme.md -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/test/RunSqlCmdScriptTask.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/test/RunSqlCmdScriptTask.Tests.ps1 -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/test/RunSqlCmdScriptsInFolderTask.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/test/RunSqlCmdScriptsInFolderTask.Tests.ps1 -------------------------------------------------------------------------------- /extensions/RunSqlCmdScripts/vss-extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/RunSqlCmdScripts/vss-extension.json -------------------------------------------------------------------------------- /extensions/VsixPackageDeployTabularModel.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/VsixPackageDeployTabularModel.ps1 -------------------------------------------------------------------------------- /extensions/VsixPackagePublishDacPac.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/VsixPackagePublishDacPac.ps1 -------------------------------------------------------------------------------- /extensions/VsixPackageRunSqlCmdScripts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/VsixPackageRunSqlCmdScripts.ps1 -------------------------------------------------------------------------------- /extensions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/extensions/package-lock.json -------------------------------------------------------------------------------- /images/DonateNowWithPayPal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/images/DonateNowWithPayPal.png -------------------------------------------------------------------------------- /images/VisualStudioMarketplace-SSIS-Extensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/images/VisualStudioMarketplace-SSIS-Extensions.png -------------------------------------------------------------------------------- /images/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/images/donate.png -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/AzureDevOpsExtensionsForSqlServer/HEAD/tests/README.md --------------------------------------------------------------------------------