Having a big project and having to compile it in order to run it each time, takes long time.
I want to run it without build stage if possible(provided that i didnt make any change to source codes).

Any ideas?

Thanks.

Recommended Answers

All 4 Replies

you could just run the .exe that it's in the Debug folder after each build.

commented: good +4

you could just run the .exe that it's in the Debug folder after each build.

good idea, maybe i can add that .exe as a link to my project to get around browsing and locating it.

What tool are you using to build the project?

The exe is the compiled solution, all exes have already been compiled as well

if you are in a winforms app, it needs to be compiled before running it, if you are in asp.net you can set the project not to be built until specifically build the project

if your project is getting to be that large, then possibly separate your reference dlls out into a separate solution, and build those when necessary, and have the main app reference the dlls rather than projects

commented: very good real-world use case here. +12
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.