iol
iol

Reputation: 37

Start without debugging same with start from .exe?

What are the differences between run without debugging and running from .exe? The question relies on the fact that my program runs fine from ctrl+f5 but not from .exe of debug mode.

Upvotes: 0

Views: 155

Answers (1)

Ivan Sander de Jong
Ivan Sander de Jong

Reputation: 835

If you run your program without debuging it takes the last succesfull build and starts this. if you run with debugging it builds the last version of the code and runs that.

Upvotes: 1

Related Questions