How do you parameterize deployments when using ASP

2019-03-16 07:49发布

The new pubxml files in ASP.NET 4.5 are definitely a step in the right direction. I also like msdeploy's support for parameters.xml files (even though they are sometimes not as powerful as I would like). Now, how do I combine msdeploy's parameters and the pubxml files? I would expect that the pubxml files would allow me to provide a setting like

<ParametersFile>productionParameters.xml</ParametersFile>

or something similar in my production.pubxml file, that would contain values to be merged into web.config when publishing to the production environment. Is that possible or do I have to go back to rolling my own way of determining the parameters file and invoking msdeploy with -setParamFile="productionParameters.xml"?

1条回答
成全新的幸福
2楼-- · 2019-03-16 08:34

You can't set your own parameters file, but you can declare parameter values from within the pubxml:

<ItemGroup>
  <MSDeployParameterValue Include="Parameter Name">
    <ParameterValue>Parameter Value</ParameterValue>
  </MSDeployParameterValue>
</ItemGroup>
查看更多
登录 后发表回答