如何在没有 aspnet_compiler 的情况下直接从 Visual Studio 编译网站项目?
我有一个网站项目,希望编译我的 .aspx 和 .cs。为此,我使用这样的 aspnet 编译器:
aspnet_compiler -v /My_Site -p c:\site_published_with_Visual_Studio c:\site_compiled_with_aspnet_compiler
这意味着,我必须首先使用 Visual Studio 2010 发布我的网站,然后打开命令行来调用 aspnet_compiler。
有没有办法直接使用 Visual Studio 2010 编译网站项目,也许可以通过单击而不是使用命令行?预先感谢您的帮助!
I have a Web Site project and want my .aspx and .cs to be compiled. For this I am using a the aspnet compiler like this:
aspnet_compiler -v /My_Site -p c:\site_published_with_Visual_Studio c:\site_compiled_with_aspnet_compiler
This means, that I have to publish my website with Visual Studio 2010 first and then open a command line to call aspnet_compiler.
Is there a way to compile a web site project directly with Visual Studio 2010, maybe by clicking around instead of using a command line? Thanks in advance for your help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
发布网站
向导 - 构建菜单+发布网站。查看 MSDN 文章 - 如何:使用发布来部署网站项目网站工具。You may use
Publish WebSite
wizard - Build Menu + Publish WebSite. Have a look at MSDN article - How to: Deploy a Web Site Project by Using the Publish Web Site Tool.