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,
EricNo, 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!" :-)
<anonymous@.discussions.microsoft.com> wrote in message
news:OcEYcdLdEHA.3732@.TK2MSFTNGP11.phx.gbl...
| 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)
<anonymous@.discussions.microsoft.com> wrote in message
news:OcEYcdLdEHA.3732@.TK2MSFTNGP11.phx.gbl...
> 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
Thanks for the replies. And congrats on your "software engineer" status,
Kyril. ;-)
Eric
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!" :-)
<anonymous@.discussions.microsoft.com> wrote in message
news:uBkJQOMdEHA.3380@.TK2MSFTNGP12.phx.gbl...
| 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".
"Kyril Magnos" <kyril.magnos@.yahoo.com> wrote in message
news:OxRdAdMdEHA.3632@.TK2MSFTNGP09.phx.gbl...
> 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!" :-)
> <anonymous@.discussions.microsoft.com> wrote in message
> news:uBkJQOMdEHA.3380@.TK2MSFTNGP12.phx.gbl...
> | Thanks for the replies. And congrats on your "software engineer"
status,
> | Kyril. ;-)
> |
> | Eric
> |
> |
0 comments:
Post a Comment