如何使用 aspnet_compiler

发布于 2024-08-12 17:42:12 字数 422 浏览 6 评论 0原文

看完这篇[帖子][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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

豆芽 2024-08-19 17:42:12

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

终遇你 2024-08-19 17:42:12

您的后期构建活动毫无意义。如果可以预编译,那么 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.

农村范ル 2024-08-19 17:42:12

您可以使用 Visual Studio 预编译该网站吗?通过构建 ->发布网站菜单?

Are you able to precompile the site using Visual Studio? Via the Build -> Publish Web Site menu?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文