如何使用 aspnet_compiler
看完这篇[帖子][1]后,我想我应该尝试一下。
因此,在我的构建后事件中,我放置了...
C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_compiler -v / -p "$(ProjectDir)\"
...然后单击构建解决方案。
不幸的是,我收到以下错误:“无法加载类型'MyWebProject.UI.Global'。C:\global.asax 1 MyWebProject.UI”
有什么想法吗?据我所知,我什至没有 C:\global.asax 文件。
最终,我希望能够检查我的 ASPX 页面是否有错误。目前,我可以执行此操作的唯一方法是导航到该页面。
欢迎任何其他建议/方法!
谢谢,
ETFairfax
Afterlooking at this [post][1], I thought that I would give it a go.
So, in my Post Build Event, I've put...
C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_compiler -v / -p "$(ProjectDir)\"
...then clicked Build Solution.
Unfortunately, I got the following error: "Could not load type 'MyWebProject.UI.Global'. C:\global.asax 1 MyWebProject.UI"
Any ideas why? To my knowledge, I don't even have a C:\global.asax file.
Ultimately, I want to be able to check my ASPX pages for errors. At the moment, the only way in which I can do this is by navigating to the page.
Any other suggestions/approaches welcome!
Thanks,
ETFairfax
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
http://mikehadlow.blogspot.com/2008/05/compiling -aspx-templates-using.html
C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\aspnet_compiler.exe -v / -p "网站完整路径" d:\testPrecompileFolder -f
http://mikehadlow.blogspot.com/2008/05/compiling-aspx-templates-using.html
C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\aspnet_compiler.exe -v / -p "website complete path" d:\testPrecompileFolder -f
您的后期构建活动毫无意义。如果可以预编译,那么 aspnet_compiler 就不会捕获任何错误。当然,运行时错误是另一回事。
Your post build event is pointless. If you can precompile, then you don't have any errors that aspnet_compiler would catch anyway. Runtime errors are another matter of course.
您可以使用 Visual Studio 预编译该网站吗?通过构建 ->发布网站菜单?
Are you able to precompile the site using Visual Studio? Via the Build -> Publish Web Site menu?