Re: Why doesn't C# allow incremental compilation like Java?
- From: Jon Skeet [C# MVP] <skeet@xxxxxxxxx>
- Date: Mon, 23 Apr 2007 07:27:39 +0100
Arne Vajhøj <arne@xxxxxxxxxx> wrote:
mwelsh1118@xxxxxxxxx wrote:
I've looked into that, but it's not possible to do within Visual
Studio (it always compiles projects to dll's).
VS provides "standard" functionality.
I find it hard to believe that build time should really be a problem.
I find it a problem - at least compared with using Eclipse in Java.
That builds every time you save, and has a sufficiently nippy
incremental compiler that it encourages you to save (and therefore
compile) often. I find this very helpful compared with the VS model,
where you can't build as often because the build takes significantly
longer. (Even if it's only 15 seconds, that's reasonably significant.)
Part of that is due to assemblies being single files (which is
brilliant in many other ways) but I suspect VS could still do a better
job at incremental compilation. It would probably have to have its own
compiler (just as VS does for Java) which makes life trickier though. I
occasionally run into problems where Eclipse's internal compiler is
pickier than the JDK or vice versa.
If you want maximum control over the build, then use NAnt.
That doesn't help the development time though.
--
Jon Skeet - <skeet@xxxxxxxxx>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
.
- Follow-Ups:
- References:
- Why doesn't C# allow incremental compilation like Java?
- From: mwelsh1118
- Re: Why doesn't C# allow incremental compilation like Java?
- From: Nicholas Paldino [.NET/C# MVP]
- Re: Why doesn't C# allow incremental compilation like Java?
- From: mwelsh1118
- Re: Why doesn't C# allow incremental compilation like Java?
- From: Arne Vajhøj
- Why doesn't C# allow incremental compilation like Java?
- Prev by Date: Re: C# handing over delegates
- Next by Date: Re: singleton
- Previous by thread: Re: Why doesn't C# allow incremental compilation like Java?
- Next by thread: Re: Why doesn't C# allow incremental compilation like Java?
- Index(es):
Relevant Pages
|