MSBuild Web Deploy不更新连接字符串

MSBuild Web Deploy不更新连接字符串,第1张

概述我目前正在尝试在生产服务器上启动并运行部署过程.目前我正在使用Web部署和发布配置文件来实现这一点,除了更新连接字符串以适应生产服务器之外,我还能正常工作. 我在用: msbuild myProj.csproj /p:DeployOnBuild=true;PublishProfile=myProfile;Configuration=Release 创建发布包,以及: call myProj.dep 我目前正在尝试在生产服务器上启动并运行部署过程.目前我正在使用Web部署和发布配置文件来实现这一点,除了更新连接字符串以适应生产服务器之外,我还能正常工作.

我在用:

msbuild myProj.csproj /p:DeployOnBuild=true;PublishProfile=myProfile;Configuration=Release

创建发布包,以及:

call myProj.deploy.cmd /Y /M:http://myServer/MSDeployAgentService -allowUntrusted /U:user /:Password

所以这是有效的,它打包然后将其发送到服务器,并正确配置IIS,但指向错误的数据库.

我的发布配置文件如下:

<?xml version="1.0" enCoding="utf-8"?><Project Toolsversion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">  <PropertyGroup>    <WebPublishMethod>MSDeploy</WebPublishMethod>    <SiteUrlTolaunchAfterPublish />    <MSDeployServiceURL>http://myserver</MSDeployServiceURL>    <DeployIISAppPath>Website</DeployIISAppPath>    <RemoteSitePhysicalPath />    <SkipExtrafilesOnServer>True</SkipExtrafilesOnServer>    <MSDeployPublishMethod>RemoteAgent</MSDeployPublishMethod>    <Username>user</Username>    <_SavePWD>True</_SavePWD>    <PublishDatabaseSettings>      <Objects xmlns="">        <ObjectGroup name="DBContext" Order="1" Enabled="False">          <Destination Path="Data Source=server;Initial Catalog=ProductionDB;User ID=user;Password=&quot;password&quot;" name="" />          <Object Type="DbCodeFirst">            <Source Path="DBMigration" DbContext="myproj.RepositorIEs.DBContext,myproj.RepositorIEs" MigrationConfiguration="myproj.RepositorIEs.Migrations.Configuration,myproj.RepositorIEs" Origin="Configuration" />          </Object>        </ObjectGroup>        <ObjectGroup name="DefaultConnection" Order="2" Enabled="False">          <Destination Path="Data Source=server;Initial Catalog=ProductionDB;User ID=user;Password=&quot;password&quot;" name="" />          <Object Type="DbDacFx">            <PreSource Path="Data Source=localhost;Initial Catalog=devDB;User ID=user;Password=&quot;password&quot;" includeData="False" />            <Source Path="$(IntermediateOutputPath)autoScripts\DefaultConnection_IncrementalSchemaOnly.dacpac" dacpacAction="Deploy" />          </Object>          <UpdateFrom Type="Web.Config">            <Source MatchValue="Data Source=localhost;Initial Catalog=devDB;User ID=user;Password=password" MatchAttributes="$(UpdateFromConnectionStringAttributes)" />          </UpdateFrom>        </ObjectGroup>      </Objects>    </PublishDatabaseSettings>  </PropertyGroup>  <ItemGroup>    <MSDeployParameterValue Include="$(DeployParameterPrefix)DBContext-Web.config Connection String">      <ParameterValue> Data Source=server;Initial Catalog=ProductionDB;User ID=user;Password="password"</ParameterValue>    </MSDeployParameterValue>    <MSDeployParameterValue Include="$(DeployParameterPrefix)DefaultConnection-Web.config Connection String">      <ParameterValue>Data Source=server;Initial Catalog=ProductionDB;User ID=user;Password="password"</ParameterValue>    </MSDeployParameterValue>  </ItemGroup></Project>

令人讨厌的是,这直接从VS2012发布时工作正常,而不是通过命令行.我的msbuild通话中是否有一个开关或选项?

它在我的myProj.SetParameters.xml文件中工作不正常,显示的连接字符串有错误.如果我手动将这些更改为正确的连接字符串,则部署后生产服务器上的web.xml文件是正确的.如何在SetParameters文件中获取正确的字符串?任何帮助将不胜感激.

解决方法 最后,为了解决这个问题,在Visual Studio中,我在项目的根目录中创建了一个Parameters.xml文件,该文件包含要在生产服务器上使用的连接字符串的值.拾取并使用它们而不是默认值.

Parameters.xml文件如下所示:

<?xml version="1.0" enCoding="utf-8" ?><parameters>    <parameter name="DefaultConnection-Web.config Connection String"        description=""        defaultValue=""Tags="" />

只需添加您需要的任意数量,并根据需要显然填充属性

总结

以上是内存溢出为你收集整理的MSBuild Web Deploy不更新连接字符串全部内容,希望文章能够帮你解决MSBuild Web Deploy不更新连接字符串所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1126798.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存