我在 Visual Studio 2012 中有一个数据库项目。我正在尝试创建一个 MSBuild 项目以在构建服务器上发布数据库。在我的解决方案中,我有一个我想在构建服务器上使用的发布配置文件。
我有以下目标设置:
<Target Name="BuildDatabases">
<MSBuild Projects="$(DBProjectPath)" Targets="Build;Deploy" Properties="DeployOnBuild=true;SqlPublishProfilePath=BuildServer.publish">
</MSBuild>
</Target>
我尝试了 PublishProfile 和 SqlPublishProfilePath 的组合,但无济于事。我总是收到:
Deploy Error: The connection string is not valid
我可以在 VS 中使用发布配置文件而没有连接问题。