Building SSIS solution using visual studio online build definition… .dtproj is not supported by MSBuild and cannot be built

ぃ、小莉子 提交于 2019-12-10 20:12:04

问题


I've created a build definition via visual studio online that builds an SSIS project (dtproj). The build appears to succeed but there is a warning that appears stating "dtproj is not supported by MSBuild and cannot be built".

SSDT has been installed on the build server.

Does anyone have any ideas why this warning would be showing up?


回答1:


MSBuild cannot build the project file format that SSDT uses. It is a pre-msbuild visuals studio format.

There's a hacky way to create an msbuild project that performs the necessary tasks but the easiest way is not not use MSBuild for this project but build it via the visual studio command line devenv.exe /build. Since this builds from visual studio, it understands all project file formats and has the necessary SSDT plugins.



来源:https://stackoverflow.com/questions/44410829/building-ssis-solution-using-visual-studio-online-build-definition-dtproj-is

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