I have created a SQL Server project (.sqlproj) in Visual Studio and have loaded it in VS Code, using the MS SQL extension. I can connect to my database and run SQL scripts, but that is not the point of a SQL Server project.
In Visual Studio a SQL Server project can be built, which creates a single SQL script out of the various scripts in the project, which you can use to create the full database on an empty database server. You can also run the build against an existing database, which will create an update script that will ALTER the existing database to the new version.
Can I build the .sqlproj in VS Code or is this option not supported? If this option is not supported, ist there another extension that can do a similar thing?