문제

What is the command-line to build an "SQL Server Database Project" project?

I try to google for this but I was filled with lots of posts on Visual Studio 2010 which is outdated.

Please share if you know how to.

도움이 되었습니까?

해결책

Using the Visual Studio Developer command prompt, navigate to the project folder and type msbuild <projectname>.sqlproj.

The default msbuild action is to build the project (it's possible to pass "/t:Build" in to explicitly call build).

From a non-developer command prompt you'd just need to add MSBuild to the path.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top