从 Visual Studio 在线部署到 Azure 网站时,将额外文件部署到站点目录
Deploy extra files to the site directory when deploying to Azure Websites from Visual Studio Online
我一直在查看 site
目录中的 this article. Part of the article says to place an extra file, applicationHost.xdt
(the transform for an Azure Site Extension)。文章提到通过 ftp.
将此文件放在那里
Azure 网站中的 site
目录是 wwwroot
目录的父目录,该目录用作 CI 构建的部署目标,当您连接Azure 网站 Visual Studio 在线。
我想将 applicationHost.xdt
文件添加到源代码管理,并在构建时将文件复制到 site
目录。我将如何着手修改自动生成的 visual studio 在线构建来完成此操作?
如果您想自动将文件部署到 D:\Home\site,部署时将文件复制到 D:\Home\site 目录的唯一方法是创建一个 Custom Deployment Script
或者,您可以只将文件复制到那里一次而不再部署它,因为它将是一个相对静态的文件。
我一直在查看 site
目录中的 this article. Part of the article says to place an extra file, applicationHost.xdt
(the transform for an Azure Site Extension)。文章提到通过 ftp.
Azure 网站中的 site
目录是 wwwroot
目录的父目录,该目录用作 CI 构建的部署目标,当您连接Azure 网站 Visual Studio 在线。
我想将 applicationHost.xdt
文件添加到源代码管理,并在构建时将文件复制到 site
目录。我将如何着手修改自动生成的 visual studio 在线构建来完成此操作?
如果您想自动将文件部署到 D:\Home\site,部署时将文件复制到 D:\Home\site 目录的唯一方法是创建一个 Custom Deployment Script
或者,您可以只将文件复制到那里一次而不再部署它,因为它将是一个相对静态的文件。