Вопрос

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