如何在 Visual Studio 2010 中设置 aspnet_compiler 的标志/开关?
我在 Web 应用程序项目的命名空间方面遇到了一些问题 - 前端文件正在被编译成 ASPX.directory1_director2_directoryn_filename
命名空间格式下的单独程序集,并且我希望所有内容都在一个 dll 中。
我发现这个问题并设置-o
标志似乎正是我正在寻找的解决方案。但是,我使用标准 Build
菜单选项在 VS2010 中构建代码,但找不到可以设置它的任何地方。有人能指出我正确的方向吗?
I'm having some trouble with namespacing for a web application project - front-end files are being compiled into separate assemblies under the ASPX.directory1_director2_directoryn_filename
namespace format and I want everything in one dll.
I found this question and setting the -o
flag would appear to be exactly the solution I'm looking for. However I build my code in VS2010 using the standard Build
menu option and I can't find anywhere I can set it. Can anyone point me in the right direction?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我想你的意思是aspnet_compiler。这是
I suppose you meant aspnet_compiler. Here is a tutorial. It's related to Visual Web Developer 2008. But the basic idea is the same - use the External Tools dialog to create you desired action.
如果您使用的是网站项目,则可以从“发布”对话框中使用 ASP.NET 编译器选项。对于 Web 应用程序项目,您可以使用Web 部署项目< /a> 以启用预编译(从技术上讲,WDP 也应该适用于网站)。
If you're using a Web Site Project, the ASP.NET compiler options can be used from the Publish dialog. For a Web Application Project, you can use Web Deployment Projects to enable pre-compilation (technically, WDP should work for WebSites as well).