VS2008 ASP.net .PDB 在哪里创建?
我有一个vs2008的网站。构建后,我在任何地方都找不到我的 .pdb 文件。
我的构建配置设置为调试。
位于 Web 配置中。
我的 .pdb 在哪里?我的 app_code 或 bin 文件夹中没有任何内容。我如何生成这些文件?
I have a website in vs2008. I cannot find my .pdb files anywhere after I build.
My build configuration is set to debug. <compilation debug="true">
is in the web config.
Where is my .pdb? There is nothing in my app_code or bin folder. How do I generate these files?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您第一次访问网页时,ASP.NET 网站会动态编译,也许这就是您看不到 .pdb 文件的原因。
根据 MSDN,编译后的代码转到
%SystemRoot %\Microsoft.NET\Framework\versionNumber\临时 ASP.NET 文件
。我想 pdb(如果生成)也会在那里结束,但我手头没有 Visual Studio 2008 来验证这个假设。ASP.NET websites are dynamically compiled on the fly when you first access the web pages, maybe that's why you don't see the .pdb files.
According to MSDN, the compiled code goes to
%SystemRoot%\Microsoft.NET\Framework\versionNumber\Temporary ASP.NET Files
. I suppose the pdb (if generated) will end up there too but I don't have Visual Studio 2008 on hand to verify this assumption.