How to build and deploy SSRS project through VSTS?

蹲街弑〆低调 提交于 2019-12-13 02:29:29

问题


I created simple SSRS project in VS2015. I want to build and deploy the SSRS project using VSTS by creating the build definition and release definition steps.

Is there any third party VSTS extension available or for SSRS build and SSRS Deploy not same like as SSIS Build and SSIS Deploy tasks?

Can you please tell me how to build and deploy SSRS project through VSTS?


回答1:


There is SQL Server Reporting Services Deployment extension.

Simple sample tasks:

  1. Command Line (Tool: C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\devenv.exe; Arguments: "$(build.sourcesdirectory)/ReportDemo.sln" /build "$(BuildConfiguration)"; Working folder: $(build.sourcesdirectory))
  2. SQL Server Reports Deployment (Report files: $(System.DefaultWorkingDirectory)/**/bin/$(BuildConfiguration)/*.rdl; Upload path:/BuildTest; Webservice URL: http://XXX/ReportServer/ReportService2010.asmx?wsdl)


来源:https://stackoverflow.com/questions/45994328/how-to-build-and-deploy-ssrs-project-through-vsts

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!