5

我目前正在尝试在我的生产服务器上启动并运行我的部署过程。目前我正在使用网络部署和发布配置文件来实现这一点,除了更新连接字符串以适应生产服务器之外,我的一切工作正常。

我在用:

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 文件?任何帮助将不胜感激。

4

3 回答 3

3

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

Parameters.xml 文件如下所示:

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

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

于 2013-02-15T09:15:20.370 回答
0

我的 DefaultConnection 也没有更新。结果我不得不删除 MyProject > PublishProfiles .pubxml 文件。

然后在尝试发布新建项目时,它要求我连接到 azure 并下载发布配置文件。

即使该向导有一个复选框,可以选择关闭使用发布配置文件下拉的覆盖 DefaultConnection 字符串的选项,取消选中它也没有任何效果。它继续覆盖字符串。

所以在 azure 控制面板(门户)中,我单击了网站 > 我的网站 > 配置

向下滚动到连接字符串,您可以显示隐藏的连接字符串。我只是通过点击 x 来删除它,然后在我的网络配置中硬编码正确的那个。

然后我再次删除了 .pubxml 并再次通过向导。现在没有使用发布配置文件下拉连接字符串。

于 2014-09-04T03:17:50.487 回答
0

我的发布配置文件 .pubxml 文件(在 Project\Properties\PublishProfiles 中找到)因额外重复的“DefaultConnection-Web.config Connection String”节点而损坏。删除额外节点后,连接字符串正确更新。

于 2019-06-24T20:33:04.277 回答