Optimizing using the IncrementalBuild property

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Greetings,

I have an enterprise-wide ASP.NET app that I'm trying to optimize as much as
possible. MSDN states that the IncrementalBuild property "enables
incremental compilation, in which only methods that have changed since the
last compilation are recompiled."

Is this to just speed up compiling when you are building/debugging your
program, or does this also spill over to the production environment to limit
the amount of JIT iterations?

Thank you,

Eric
 
No, it only speeds up compilation. It has no effect on JIT.

--
HTH

Kyril Magnos
"I'm not a developer anymore, I'm a software engineer now!" :-)

| Greetings,
|
| I have an enterprise-wide ASP.NET app that I'm trying to optimize as much
as
| possible. MSDN states that the IncrementalBuild property "enables
| incremental compilation, in which only methods that have changed since the
| last compilation are recompiled."
|
| Is this to just speed up compiling when you are building/debugging your
| program, or does this also spill over to the production environment to
limit
| the amount of JIT iterations?
|
| Thank you,
|
| Eric
|
|
 
it speeds up compiling before debug runs. you should always do a rebuild for
the production release, as incremental compiles do not build the best code.

-- bruce (sqlwork.com)
 
LOL... yw... next I think I am going to become a "Software Engineer
specializing in programming"... ;-)

--
HTH

Kyril Magnos
"I'm not a developer anymore, I'm a software engineer now!" :-)

| Thanks for the replies. And congrats on your "software engineer" status,
| Kyril. ;-)
|
| Eric
|
|
 
lol...I'm a "Programmer/Analyst specializing in Programming, emphasizing
Analysis, and encouraging both".
 
Back
Top