aspnet_compiler 网站项目
如果我使用本地 Web 服务器进行开发,我可以在不安装 IIS 的情况下从命令行使用实用程序 aspnet_compiler 编译网站项目 (3.5) 吗?
谢谢
Can I compile a WebSite project(3.5) using utility aspnet_compiler from command line without installing IIS if I am using local web server for development?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,你可以。不过,您必须指定将其托管在服务器上的虚拟路径:
这会将“D:\InputWebsite”中的网站编译为“D:\CompiledWebsite”,并期望将其部署在“/deploymentVirtualPath”中生产服务器上的虚拟路径。如果需要将其部署在网站根目录中,只需指定“/”作为虚拟路径即可。
Yes, you can. You'll have to specify the virtual path you'll host it on the server though:
This will compile the Web site in "D:\InputWebsite" to "D:\CompiledWebsite" and expects it to get deployed in "/deploymentVirtualPath" virtual path on the production server. If you need to deploy it in the Website root, just specify "/" as the virtual path.