Automatic Deployment Resources

后端 未结 6 1520
旧巷少年郎
旧巷少年郎 2021-02-06 08:15

I know enough to know that we need to get our application to deploy with a single user action. However, I don\'t know:

  1. What are some good tools to
6条回答
  •  你的背包
    2021-02-06 08:44

    We've had great success with Windows Installer XML. Basically, you define the components that make up your application in XML and WiX turns that into an MSI package. Documentation is relatively sparse, but the provided CHM file combined with search fu will get you a long way there.

    The MSI packages can take input parameters for configuration values and perform actions to manipulate configuration files after the application has been deployed. For example, "msiexec /i MyCustomPackage.msi SqlServer=SomeSQLBox" could deploy the web application and modify the configuration entry for a dependent SQL box.

提交回复
热议问题