.NET 编译器输出
我正在尝试解决源问题,并且正在尝试找出哪个版本是哪个。 我遇到的另一个问题是 .NET 编译器生成的输出非常难以理解并且有点令人沮丧。 在我的 bin 文件夹中,我有以下程序集:
AjaxControlToolkit.dll
AjaxControlToolkit.pdb
App_Code.compiled
App_Code.dll
App_global.asax.compiled
App_global.asax.dll
App_Web_1bovrrt_.dll
App_Web_cuytoyuc.dll
App_Web_gjpim9z2.dll
App_Web_k-homu1n.dll
App_Web_m_hnrikq.dll
App_Web_mqzd9_of.dll
App_Web_ogzfeeae.dll
App_Web_qa1j2ese.dll
App_Web_thkvu0ud.dll
App_Web_ztp4u54p.dll
log4net.dll
StoreProcedures.dll
StoreProcedures.pdb
我了解文件包含的大部分内容,因为 Reflector 是我的朋友。
我的问题是:有没有办法告诉编译器使用程序集的编译名称更加“英语”,或者甚至将每个页面放入它自己的程序集中? 或者这是一个白日梦?
干杯!
I'm attempting to resolve source problems and I'm attempting to figure out which version is which. The other problem I'm running into is the output the .NET compiler generates is very unintelligible and a little frustrating. In my bin folder i have the following assemblies:
AjaxControlToolkit.dll
AjaxControlToolkit.pdb
App_Code.compiled
App_Code.dll
App_global.asax.compiled
App_global.asax.dll
App_Web_1bovrrt_.dll
App_Web_cuytoyuc.dll
App_Web_gjpim9z2.dll
App_Web_k-homu1n.dll
App_Web_m_hnrikq.dll
App_Web_mqzd9_of.dll
App_Web_ogzfeeae.dll
App_Web_qa1j2ese.dll
App_Web_thkvu0ud.dll
App_Web_ztp4u54p.dll
log4net.dll
StoreProcedures.dll
StoreProcedures.pdb
I understand most of what the files contain because Reflector is my friend.
My question is: is there a way to tell the compiler to be a bit more "English" with the compiled names of assemblies, or even to put each page in it's own assembly? Or is that a pipe dream?
Cheers!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你最好的选择是做一些事情。
Your best bet is to do a few things.
由于动态编译只使用名称中的一些哈希值,我猜你不能。
但您也许可以通过预编译来实现您的目标。
Since dynamic compilation just uses some hashes in the name, my guess it that you cannot.
But you may be able to achieve your goal with precompilation.