What are Debug and Release Exe's

L

Larry

In the directory Structure in a .NET solution
I have noticed that there are three different Executables.

One in the bin sub-directory,
One in the obj/release sub-directory
One in the obj/debug sub-directory

What are all of these, the only one that works is the one
in the bin sub-directory.

I have searched help to no avail.

Thank You for any help you can give me,

Laurence Nuttall
Programmer Analyst III
UCLA - Division of Continuing Education
 
C

Cor Ligthert

Larry,
What are all of these, the only one that works is the one
in the bin sub-directory.
Are you sure of that.

The bin is the same as the application start folder, so there is the latest
that you build (or started debug) and probably is in that folder as well
other needed files you named in your program as the application path.

The debug version is in the debug folder
The release is the one without debug information.

I hope this helps,

Cor
 
L

Luc The Perverse

Cor Ligthert said:
Larry,

Are you sure of that.

The bin is the same as the application start folder, so there is the
latest that you build (or started debug) and probably is in that folder as
well other needed files you named in your program as the application path.

The debug version is in the debug folder
The release is the one without debug information.

I hope this helps,

If he hasn't made a debug EXE in awhile, then his old code might possibly
not work :)

-LTP

:)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

ListView Items 3
Modifiers Property of label 4
Setting Application properties 3
.Net Freezes 1
how to use help 2
Capitalize keywords 1
Editor Capitalize statements 1
public variable not public in class 1

Top