9

The title is fairly self explanatory. Whenever I do a build in Delphi 2010, if afterward all I change is the run parameter under Run -> Parameters, Delphi insists on rebuilding my application. In any other language/IDE I've ever used, that wouldn't happen. It wouldn't be a big problem if it weren't for the fact that a build takes about a minute each time.

Any ideas on how, if anything, I can do to keep it from doing this?

Thanks, --David

CodeSlinger512
  • 618
  • 1
  • 8
  • 23

1 Answers1

8

I've noticed this too, and I agree that it's annoying. Not sure exactly what the technical reasons are behind it. Probably something to do with the .dproj having changed. You should file a bug report about this on QC.

Mason Wheeler
  • 82,511
  • 50
  • 270
  • 477
  • 1
    +1; I think it is a bug too; @Davidguygc: please QC a bug report. – Jeroen Wiert Pluimers Mar 04 '11 at 22:02
  • Yeah, I'm not certain if it is a change in the dproj. I've changed it in the window and then canceled and it would still cause a rebuild. I'll report it Monday. Thanks for the input. --David – CodeSlinger512 Mar 06 '11 at 06:42
  • 1
    The fact that runtime parameters are included in the .dproj file should itself be considered a ***nasty*** bug! That is just one of a number of settings that should **not** be version controlled sitting inside the same file as a number of settings that **should** be version controlled. – Disillusioned Jul 23 '13 at 10:21