IIS Web 部署 - 创建虚拟目录?
在 VS2010/IIS 7.5 上开发站点时,我使用 Web Deploy 将站点从我的计算机发布到开发站点服务器。
该站点有大约 40 个虚拟目录,我想在部署期间在服务器上自动创建这些目录。有没有一种简单的方法可以做到这一点?
我正在考虑编写一个小型应用程序,它可以从文件或数据库加载列表并根据需要创建它们。这些目录在我的开发计算机上与 Web 服务器上具有不同的物理路径,这也给工作带来了麻烦。
When developing a site on VS2010/IIS 7.5, I'm using Web Deploy to publish the site from my machine to the dev site server.
The site has about 40 virtual directories, and I'd like to automagically create those on the server during the deployment. Is there a simple way to do this?
I'm considering writing a small app that would load the list from a file or database and create them on demand. The directories have different physical paths on my development machine than on the web server, also, which throws a wrench into the works.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您能分享一下您的解决方案吗?我正在使用 WebDeploy 将 asp.net webforms 应用程序部署到 IIS,并且必须创建 02 个保存 .pdf 文件的虚拟目录(指向不同的驱动器)。
如何挂钩 AaronS 指向我的 .pubxml 文件的 CustomBuildTask? .下面是文件的片段。
从 Visual Studio 2019 发布应用程序后,IIS 应该具有 pdfmedia 虚拟目录。
非常感谢!
Could you please share your solution? I'm deploying an asp.net webforms application to IIS using WebDeploy and I have to create 02 virtual directories (pointing to different drives) that hold .pdf files.
How Do I hook the CustomBuildTask that AaronS pointed on my .pubxml file? .Below is a snippet of the file.
IIS should have the pdfmedia virtual directory after I publish the application from Visual Studio 2019.
Thank you very much!
如果您使用 MSBuild 进行 Web 部署,则可以在 .net 中编写 CustomBuildTask,用于创建虚拟目录。
有很多关于如何创建和使用自定义构建任务的资源,但以下是我使用自定义构建任务创建虚拟目录的代码:
If you're using MSBuild for your web deploy you can write a CustomBuildTask in .net that you can use to create your virtual directory.
There are a lot of resources on how to create and consume a custom build task, but here is the code I use to create a virtual directory using a custom build task:
我还没有针对 WebDeploy 进行任何自定义编程,但我已经看到有一个针对它的 API 的参考资料。我似乎找不到关于它的官方文档,但也许这个博客+示例应用程序可以提供一个开始: Web 部署 API Web 应用程序
I've not done any custom programming against WebDeploy, but I've seen reference that there is an API for it. I can't seem to find official documentation on it, but perhaps this blog+sample app could provide a start: Web Deploy API Web Application