Visual Studio 2012加载pdb文件 [英] Visual Studio 2012 loads pdb files

查看:406
本文介绍了Visual Studio 2012加载pdb文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,



视觉工作室将很多pdb文件添加到我的项目目录中。我怎样才能阻止vs?

解决方案

可能它们位于构建目录中。基本上pdb文件包含调试信息,如果您不打算调试应用程序,它们不是必需的。可以在项目配置中禁用pdf文件的创建,通常是默认的Release配置。

他们为什么打扰你?



在这里查看更多信息:

http:// msdn.microsoft.com/en-us/library/yd4f8bd1(v=vs.71).aspx [ ^ ]



干杯


您好,



转到属性 - >构建。单击高级...按钮。将调试信息更改为



希望这有帮助。


#include< iostream>

使用命名空间std;

void main()

{

int a,b;

for(a = 1; a< = 10; a ++)

{

for(b = 1; b< = 10; b ++)

{

cout<<Abdul Wahab<< endl; <的iostream = >

Hi together,

visual studio laods a lot of pdb files into my projectdirectory. how can i prevent vs from that?

解决方案

Probably they are in the build directory. Basically pdb files contain debugging informations and they are not essential in case you are not going to debug your application. Creation of pdf files can be disabled in the project configuration and usually it is for the default Release configuration.
Why do they bother you?

Check more here:
http://msdn.microsoft.com/en-us/library/yd4f8bd1(v=vs.71).aspx[^]

Cheers


Hi,

Go to Properties->Build. Click on the "Advanced..." button. Change "Debug Info" into "none".

Hope this helps.


#include<iostream>
using namespace std;
void main()
{
int a,b;
for(a=1;a<=10;a++)
{
for(b=1;b<=10;b++)
{
cout<<"Abdul Wahab"<<endl;< iostream="">


这篇关于Visual Studio 2012加载pdb文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆