├── .gitignore ├── 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 ├── LICENSE ├── PublishToPSGallery.ps1 ├── README.md ├── UpdateHelp.ps1 ├── coverage.xml ├── docs ├── Find-AnalysisServicesDeploymentExeLocations.md ├── Get-AnalysisServicesDeploymentExePath.md ├── Get-CubeDatabaseCompatibilityLevel.md ├── Get-ModuleByName.md ├── Get-ServerMode.md ├── Get-SqlAsPath.md ├── Get-SqlConnectionString.md ├── Get-SsasProcessingMessages.md ├── Invoke-ExternalCommand.md ├── Invoke-ProcessTabularCubeDatabase.md ├── Ping-SsasDatabase.md ├── Ping-SsasServer.md ├── Publish-Cube.md ├── Select-AnalysisServicesDeploymentExeVersion.md ├── Unpublish-Cube.md ├── Update-AnalysisServicesConfig.md └── Update-TabularCubeDataSource.md ├── examples ├── CubeAtCompatibility1200 │ ├── CubeAtCompatibility1200.smproj │ └── Model.bim ├── CubeAtCompatibility1500 │ ├── CubeAtCompatibility1500.smproj │ └── Model.bim ├── DatabaseToPublish │ ├── .vs │ │ └── DatabaseToPublish │ │ │ └── v16 │ │ │ └── TestStore │ │ │ └── 0 │ │ │ ├── 000.testlog │ │ │ └── testlog.manifest │ ├── 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 ├── DatabaseToPublishToAzure │ └── DatabaseToPublishToAzure.sqlproj ├── DatabaseToPublishToAzureSqlDB │ ├── DatabaseToPublishToAzure.Upgrade.publish.xml │ ├── DatabaseToPublishToAzureSqlDB.sln │ ├── DatabaseToPublishToAzureSqlDB.sqlproj │ ├── Scripts │ │ └── Post-Deploy │ │ │ └── PostDeploy.sql │ └── dbo │ │ └── Tables │ │ ├── MyOnlyTable.sql │ │ ├── MyOtherTable.sql │ │ └── MyTable.sql ├── ForTests │ ├── 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 └── test ├── AnalyzePSScripts.Tests.ps1 ├── Azure-Integration.Tests.ps1 ├── DeployCubeIntegration.Tests.ps1 ├── Find-AnalysisServicesDeploymentExeLocations.Tests.ps1 ├── Get-AnalysisServicesDeploymentExePath.Tests.ps1 ├── Get-CubeDatabaseCompatibilityLevel.Tests.ps1 ├── Get-ServerMode.Tests.ps1 ├── Get-SqlAsPath.Tests.ps1 ├── Get-SqlConnectionString.Tests.ps1 ├── Invoke-ProcessTabularCubeDatabase.Tests.ps1 ├── Ping-SsasDatabase.Tests.ps1 ├── Ping-SsasServer.Tests.ps1 ├── Process-Cube.Tests.ps1 ├── Publish-Cube.Tests.ps1 ├── README.md ├── RequiredModules.psd1 ├── RunPesterCodeCoverage.ps1 ├── RunSpecificTests.ps1 ├── Select-AnalysisServicesDeploymentExeVersion.Tests.ps1 ├── Unpublish-Cube.Tests.ps1 ├── Update-AnalysisServicesConfig.Tests.ps1 ├── Update-TabularCubeDataSource.Tests.ps1 ├── bootstrap.ps1 └── coverage.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/.gitignore -------------------------------------------------------------------------------- /DeployCube/DeployCube.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/DeployCube/DeployCube.psd1 -------------------------------------------------------------------------------- /DeployCube/DeployCube.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/DeployCube/DeployCube.psm1 -------------------------------------------------------------------------------- /DeployCube/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/DeployCube/LICENSE -------------------------------------------------------------------------------- /DeployCube/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/DeployCube/README.md -------------------------------------------------------------------------------- /DeployCube/en-US/DeployCube-help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/DeployCube/en-US/DeployCube-help.xml -------------------------------------------------------------------------------- /DeployCube/public/Find-AnalysisServicesDeploymentExeLocations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/DeployCube/public/Find-AnalysisServicesDeploymentExeLocations.ps1 -------------------------------------------------------------------------------- /DeployCube/public/Get-AnalysisServicesDeploymentExePath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/DeployCube/public/Get-AnalysisServicesDeploymentExePath.ps1 -------------------------------------------------------------------------------- /DeployCube/public/Get-CubeDatabaseCompatibilityLevel.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/DeployCube/public/Get-CubeDatabaseCompatibilityLevel.ps1 -------------------------------------------------------------------------------- /DeployCube/public/Get-ModuleByName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/DeployCube/public/Get-ModuleByName.ps1 -------------------------------------------------------------------------------- /DeployCube/public/Get-ServerMode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/DeployCube/public/Get-ServerMode.ps1 -------------------------------------------------------------------------------- /DeployCube/public/Get-SqlAsPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/DeployCube/public/Get-SqlAsPath.ps1 -------------------------------------------------------------------------------- /DeployCube/public/Get-SqlConnectionString.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/DeployCube/public/Get-SqlConnectionString.ps1 -------------------------------------------------------------------------------- /DeployCube/public/Get-SsasProcessingMessages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/DeployCube/public/Get-SsasProcessingMessages.ps1 -------------------------------------------------------------------------------- /DeployCube/public/Invoke-ExternalCommand.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/DeployCube/public/Invoke-ExternalCommand.ps1 -------------------------------------------------------------------------------- /DeployCube/public/Invoke-ProcessTabularCubeDatabase.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/DeployCube/public/Invoke-ProcessTabularCubeDatabase.ps1 -------------------------------------------------------------------------------- /DeployCube/public/Ping-SsasDatabase.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/DeployCube/public/Ping-SsasDatabase.ps1 -------------------------------------------------------------------------------- /DeployCube/public/Ping-SsasServer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/DeployCube/public/Ping-SsasServer.ps1 -------------------------------------------------------------------------------- /DeployCube/public/Publish-Cube.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/DeployCube/public/Publish-Cube.ps1 -------------------------------------------------------------------------------- /DeployCube/public/Select-AnalysisServicesDeploymentExeVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/DeployCube/public/Select-AnalysisServicesDeploymentExeVersion.ps1 -------------------------------------------------------------------------------- /DeployCube/public/Unpublish-Cube.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/DeployCube/public/Unpublish-Cube.ps1 -------------------------------------------------------------------------------- /DeployCube/public/Update-AnalysisServicesConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/DeployCube/public/Update-AnalysisServicesConfig.ps1 -------------------------------------------------------------------------------- /DeployCube/public/Update-TabularCubeDataSource.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/DeployCube/public/Update-TabularCubeDataSource.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/LICENSE -------------------------------------------------------------------------------- /PublishToPSGallery.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/PublishToPSGallery.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/README.md -------------------------------------------------------------------------------- /UpdateHelp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/UpdateHelp.ps1 -------------------------------------------------------------------------------- /coverage.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Find-AnalysisServicesDeploymentExeLocations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/docs/Find-AnalysisServicesDeploymentExeLocations.md -------------------------------------------------------------------------------- /docs/Get-AnalysisServicesDeploymentExePath.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/docs/Get-AnalysisServicesDeploymentExePath.md -------------------------------------------------------------------------------- /docs/Get-CubeDatabaseCompatibilityLevel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/docs/Get-CubeDatabaseCompatibilityLevel.md -------------------------------------------------------------------------------- /docs/Get-ModuleByName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/docs/Get-ModuleByName.md -------------------------------------------------------------------------------- /docs/Get-ServerMode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/docs/Get-ServerMode.md -------------------------------------------------------------------------------- /docs/Get-SqlAsPath.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/docs/Get-SqlAsPath.md -------------------------------------------------------------------------------- /docs/Get-SqlConnectionString.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/docs/Get-SqlConnectionString.md -------------------------------------------------------------------------------- /docs/Get-SsasProcessingMessages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/docs/Get-SsasProcessingMessages.md -------------------------------------------------------------------------------- /docs/Invoke-ExternalCommand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/docs/Invoke-ExternalCommand.md -------------------------------------------------------------------------------- /docs/Invoke-ProcessTabularCubeDatabase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/docs/Invoke-ProcessTabularCubeDatabase.md -------------------------------------------------------------------------------- /docs/Ping-SsasDatabase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/docs/Ping-SsasDatabase.md -------------------------------------------------------------------------------- /docs/Ping-SsasServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/docs/Ping-SsasServer.md -------------------------------------------------------------------------------- /docs/Publish-Cube.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/docs/Publish-Cube.md -------------------------------------------------------------------------------- /docs/Select-AnalysisServicesDeploymentExeVersion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/docs/Select-AnalysisServicesDeploymentExeVersion.md -------------------------------------------------------------------------------- /docs/Unpublish-Cube.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/docs/Unpublish-Cube.md -------------------------------------------------------------------------------- /docs/Update-AnalysisServicesConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/docs/Update-AnalysisServicesConfig.md -------------------------------------------------------------------------------- /docs/Update-TabularCubeDataSource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/docs/Update-TabularCubeDataSource.md -------------------------------------------------------------------------------- /examples/CubeAtCompatibility1200/CubeAtCompatibility1200.smproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/examples/CubeAtCompatibility1200/CubeAtCompatibility1200.smproj -------------------------------------------------------------------------------- /examples/CubeAtCompatibility1200/Model.bim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/examples/CubeAtCompatibility1200/Model.bim -------------------------------------------------------------------------------- /examples/CubeAtCompatibility1500/CubeAtCompatibility1500.smproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/examples/CubeAtCompatibility1500/CubeAtCompatibility1500.smproj -------------------------------------------------------------------------------- /examples/CubeAtCompatibility1500/Model.bim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/examples/CubeAtCompatibility1500/Model.bim -------------------------------------------------------------------------------- /examples/DatabaseToPublish/.vs/DatabaseToPublish/v16/TestStore/0/000.testlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/examples/DatabaseToPublish/.vs/DatabaseToPublish/v16/TestStore/0/000.testlog -------------------------------------------------------------------------------- /examples/DatabaseToPublish/.vs/DatabaseToPublish/v16/TestStore/0/testlog.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/examples/DatabaseToPublish/.vs/DatabaseToPublish/v16/TestStore/0/testlog.manifest -------------------------------------------------------------------------------- /examples/DatabaseToPublish/DatabaseToPublish.CI.publish.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/examples/DatabaseToPublish/DatabaseToPublish.CI.publish.xml -------------------------------------------------------------------------------- /examples/DatabaseToPublish/DatabaseToPublish.LOCAL.publish.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/examples/DatabaseToPublish/DatabaseToPublish.LOCAL.publish.xml -------------------------------------------------------------------------------- /examples/DatabaseToPublish/DatabaseToPublish.NoVars.publish.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/examples/DatabaseToPublish/DatabaseToPublish.NoVars.publish.xml -------------------------------------------------------------------------------- /examples/DatabaseToPublish/DatabaseToPublish.Upgrade.publish.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/examples/DatabaseToPublish/DatabaseToPublish.Upgrade.publish.xml -------------------------------------------------------------------------------- /examples/DatabaseToPublish/DatabaseToPublish.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/examples/DatabaseToPublish/DatabaseToPublish.sln -------------------------------------------------------------------------------- /examples/DatabaseToPublish/DatabaseToPublish.sqlproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/examples/DatabaseToPublish/DatabaseToPublish.sqlproj -------------------------------------------------------------------------------- /examples/DatabaseToPublish/Scripts/Post-Deploy/PostDeploy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/examples/DatabaseToPublish/Scripts/Post-Deploy/PostDeploy.sql -------------------------------------------------------------------------------- /examples/DatabaseToPublish/dbo/Tables/MyOnlyTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/examples/DatabaseToPublish/dbo/Tables/MyOnlyTable.sql -------------------------------------------------------------------------------- /examples/DatabaseToPublish/dbo/Tables/MyOtherTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/examples/DatabaseToPublish/dbo/Tables/MyOtherTable.sql -------------------------------------------------------------------------------- /examples/DatabaseToPublish/dbo/Tables/MyTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/examples/DatabaseToPublish/dbo/Tables/MyTable.sql -------------------------------------------------------------------------------- /examples/DatabaseToPublishToAzure/DatabaseToPublishToAzure.sqlproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/examples/DatabaseToPublishToAzure/DatabaseToPublishToAzure.sqlproj -------------------------------------------------------------------------------- /examples/DatabaseToPublishToAzureSqlDB/DatabaseToPublishToAzure.Upgrade.publish.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/examples/DatabaseToPublishToAzureSqlDB/DatabaseToPublishToAzure.Upgrade.publish.xml -------------------------------------------------------------------------------- /examples/DatabaseToPublishToAzureSqlDB/DatabaseToPublishToAzureSqlDB.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/examples/DatabaseToPublishToAzureSqlDB/DatabaseToPublishToAzureSqlDB.sln -------------------------------------------------------------------------------- /examples/DatabaseToPublishToAzureSqlDB/DatabaseToPublishToAzureSqlDB.sqlproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/examples/DatabaseToPublishToAzureSqlDB/DatabaseToPublishToAzureSqlDB.sqlproj -------------------------------------------------------------------------------- /examples/DatabaseToPublishToAzureSqlDB/Scripts/Post-Deploy/PostDeploy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/examples/DatabaseToPublishToAzureSqlDB/Scripts/Post-Deploy/PostDeploy.sql -------------------------------------------------------------------------------- /examples/DatabaseToPublishToAzureSqlDB/dbo/Tables/MyOnlyTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/examples/DatabaseToPublishToAzureSqlDB/dbo/Tables/MyOnlyTable.sql -------------------------------------------------------------------------------- /examples/DatabaseToPublishToAzureSqlDB/dbo/Tables/MyOtherTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/examples/DatabaseToPublishToAzureSqlDB/dbo/Tables/MyOtherTable.sql -------------------------------------------------------------------------------- /examples/DatabaseToPublishToAzureSqlDB/dbo/Tables/MyTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/examples/DatabaseToPublishToAzureSqlDB/dbo/Tables/MyTable.sql -------------------------------------------------------------------------------- /examples/ForTests/DeploymentWizard/Microsoft.AnalysisServices.Deployment.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/examples/ForTests/DeploymentWizard/Microsoft.AnalysisServices.Deployment.exe -------------------------------------------------------------------------------- /examples/ForTests/InvalidDataSourceConnection/Model.asdatabase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/examples/ForTests/InvalidDataSourceConnection/Model.asdatabase -------------------------------------------------------------------------------- /examples/ForTests/InvalidDataSourceConnection/Model.deploymentoptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/examples/ForTests/InvalidDataSourceConnection/Model.deploymentoptions -------------------------------------------------------------------------------- /examples/ForTests/InvalidDataSourceConnection/Model.deploymenttargets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/examples/ForTests/InvalidDataSourceConnection/Model.deploymenttargets -------------------------------------------------------------------------------- /examples/ForTests/MissingDeploymentOptions/Model.asdatabase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/examples/ForTests/MissingDeploymentOptions/Model.asdatabase -------------------------------------------------------------------------------- /examples/ForTests/MissingDeploymentOptions/Model.deploymenttargets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/examples/ForTests/MissingDeploymentOptions/Model.deploymenttargets -------------------------------------------------------------------------------- /examples/ForTests/MissingDeploymentTargets/Model.asdatabase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/examples/ForTests/MissingDeploymentTargets/Model.asdatabase -------------------------------------------------------------------------------- /examples/ForTests/MissingDeploymentTargets/Model.deploymentoptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/examples/ForTests/MissingDeploymentTargets/Model.deploymentoptions -------------------------------------------------------------------------------- /examples/PopulateMyOnlyTable.sqlgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/examples/PopulateMyOnlyTable.sqlgen -------------------------------------------------------------------------------- /examples/SolutionToPublish.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/examples/SolutionToPublish.sln -------------------------------------------------------------------------------- /test/AnalyzePSScripts.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/test/AnalyzePSScripts.Tests.ps1 -------------------------------------------------------------------------------- /test/Azure-Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/test/Azure-Integration.Tests.ps1 -------------------------------------------------------------------------------- /test/DeployCubeIntegration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/test/DeployCubeIntegration.Tests.ps1 -------------------------------------------------------------------------------- /test/Find-AnalysisServicesDeploymentExeLocations.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/test/Find-AnalysisServicesDeploymentExeLocations.Tests.ps1 -------------------------------------------------------------------------------- /test/Get-AnalysisServicesDeploymentExePath.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/test/Get-AnalysisServicesDeploymentExePath.Tests.ps1 -------------------------------------------------------------------------------- /test/Get-CubeDatabaseCompatibilityLevel.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/test/Get-CubeDatabaseCompatibilityLevel.Tests.ps1 -------------------------------------------------------------------------------- /test/Get-ServerMode.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/test/Get-ServerMode.Tests.ps1 -------------------------------------------------------------------------------- /test/Get-SqlAsPath.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/test/Get-SqlAsPath.Tests.ps1 -------------------------------------------------------------------------------- /test/Get-SqlConnectionString.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/test/Get-SqlConnectionString.Tests.ps1 -------------------------------------------------------------------------------- /test/Invoke-ProcessTabularCubeDatabase.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/test/Invoke-ProcessTabularCubeDatabase.Tests.ps1 -------------------------------------------------------------------------------- /test/Ping-SsasDatabase.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/test/Ping-SsasDatabase.Tests.ps1 -------------------------------------------------------------------------------- /test/Ping-SsasServer.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/test/Ping-SsasServer.Tests.ps1 -------------------------------------------------------------------------------- /test/Process-Cube.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/test/Process-Cube.Tests.ps1 -------------------------------------------------------------------------------- /test/Publish-Cube.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/test/Publish-Cube.Tests.ps1 -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/test/README.md -------------------------------------------------------------------------------- /test/RequiredModules.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/test/RequiredModules.psd1 -------------------------------------------------------------------------------- /test/RunPesterCodeCoverage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/test/RunPesterCodeCoverage.ps1 -------------------------------------------------------------------------------- /test/RunSpecificTests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/test/RunSpecificTests.ps1 -------------------------------------------------------------------------------- /test/Select-AnalysisServicesDeploymentExeVersion.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/test/Select-AnalysisServicesDeploymentExeVersion.Tests.ps1 -------------------------------------------------------------------------------- /test/Unpublish-Cube.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/test/Unpublish-Cube.Tests.ps1 -------------------------------------------------------------------------------- /test/Update-AnalysisServicesConfig.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/test/Update-AnalysisServicesConfig.Tests.ps1 -------------------------------------------------------------------------------- /test/Update-TabularCubeDataSource.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/test/Update-TabularCubeDataSource.Tests.ps1 -------------------------------------------------------------------------------- /test/bootstrap.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/test/bootstrap.ps1 -------------------------------------------------------------------------------- /test/coverage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrJohnT/DeployCube/HEAD/test/coverage.xml --------------------------------------------------------------------------------