VB.net project Files.

Soldato
Joined
8 Oct 2005
Posts
4,184
Location
Midlands, UK
Hi,

Can anyone explain (or provide a good linky) what all the files and folders do once i save a vb.net project. E.g. PDB files, obj folder etc etc.

Thanks.
 
PDB file is the debug information, so that the debugger can tell you what line of the mess that is VB.NET source the error occured on.

obj folder contains the individual byte code before it's linked into the assembly in the bin folder

anything else?
 
happytechie said:
PDB file is the debug information, so that the debugger can tell you what line of the mess that is VB.NET source the error occured on.

obj folder contains the individual byte code before it's linked into the assembly in the bin folder

anything else?

Yer :)

The .myapp file, the TempPE folder (have the file "My Project.Resources.Designer.vb.dll" in there ?????)

Thanks.
 
no idea about those, my nice neat C# projects don't have them

I suspect that the designer file is the one that contains the layout for your user interfaces (the machine generated bits). and the my App is anyone's guess sorry :confused:

HT
 
Back
Top Bottom