incremental build via command line

  • Thread starter Thread starter Xavier
  • Start date Start date
X

Xavier

I have one project which depends on several other
projects. I have incremental property set to "true" for
all projects so that if nothing has changed within any of
the other project direcories, it will not try to rebuild
them. Within VS, it works as expected yet via the
command line using devenv, it always rebuilds all the
dependent directories. Does anyone know of another way to
resolve this issue via command line?

Any assistance is much appreciated.
-Xavier
 
Xavier said:
I have one project which depends on several other
projects. I have incremental property set to "true" for
all projects so that if nothing has changed within any of
the other project direcories, it will not try to rebuild
them. Within VS, it works as expected yet via the
command line using devenv, it always rebuilds all the
dependent directories. Does anyone know of another way to
resolve this issue via command line?

Use Nant (or ant), which can do the dependency checking for you.
 
Back
Top