如何跟踪 ASP.NET 网站的依赖关系?
动态动态编译方法似乎超出了提取此类信息的典型工具的能力范围。 我知道转换为 Web 应用程序可能会更好,但我想问一下在网站项目的情况下如何完成。
The dynamic compile-on-the fly approach seems to fall outside the capacity for the typical tools which would extract this kind of information. I know I may be better off converting to a Web Application, BUT I would like to ask how it could be done in the case of a Web Site Project.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
aspnet_compiler 仍然会给您留下大量需要扫描的程序集。 您可以使用 aspnet_merge 追踪它,或使用 Web 部署项目 为您运行编译器和合并实用程序。 WDP 可以为您提供整个网站的单个程序集。
The aspnet_compiler can still leave you with a boatload of assemblies to scan. You can chase it with aspnet_merge, or use a Web Deployment Project to run the compiler and merge utility for you. WDP can give you a single assembly for the entire web site.
您始终可以使用 aspnet_compiler 然后扫描对于已编译程序集的依赖关系。
You could always use the aspnet_compiler and then scan for dependencies on the compiled assemblies.